98 条题解

  • -1
    @ 2023-8-7 17:21:41

    #include<iostream> using namespace std; int main() {

    int n,a,x;
    cin >> n >> a >> x;
    cout << n - a * x;
    return 0;
    

    }

    • -1
      @ 2023-8-7 10:15:43
      • #include <bits/stdc++.h>
        using namespace std;
        int main()
        {
            int n, a, x;
            cin >> n >> a >> x;
            cout << n - a * x;
            return 0;
        }
        

        Copy *

      • -1
        @ 2023-8-4 16:59:08

        //python 3 来了 n = int(input()) a = int(input()) x = int(input()) z = 0 for i in range(x): z = z + a n = n - z print(n)

        • -1
          @ 2023-8-3 15:46:37

          米老鼠不会偷糖果 《关于米老鼠和厨房里的糖果的一件事》

          • -1
            @ 2023-8-3 14:52:25
            #include <iostream>
            using namespace std;
            int main()
            {
                //我对米老鼠说:“你来错地方了,这里没有糖果。”
                cout << 0 << endl;
                return 0;
            }
            

            只是开个玩笑而已嘛,何必当真呢?

            • -1
              @ 2023-7-23 11:48:28

              cout << n - a * x;

              • -1
                @ 2023-7-18 21:36:53
                #include <iostream>
                using namespace std;
                int main()
                {
                int n,a,x;//定义
                cin >>n>>a>>x;//输入
                cout <<n-x*a;//输出用总糖果数减去偷的糖果数(奇奇怪怪的米老鼠)
                return 0;
                }
                
                • -1
                  @ 2023-7-16 12:02:29

                  来力!!!! python3

                  p=int(input())
                  o=int(input())
                  i=int(input())
                  o=o*i
                  p=p-o
                  print(p)
                  
                  • -1
                    @ 2023-2-26 13:27:36

                    #include<iostream> using namespace std; int main() { int n,a,x; cin>>n>>a>>x; if(n-ax<=0) cout<<0<<endl; else cout<<n-ax<<endl; return 0; }

                    • -1
                      @ 2023-2-26 13:20:40
                      #include <bits/stdc++.h>
                      using namespace std;
                      int main()
                      {
                          int n, a, x;
                          cin >> n >> a >> x;
                          cout << n - a * x;
                          return 0;
                      }
                      
                      • -1
                        @ 2023-2-26 13:18:53
                        #include <bits/stdc++.h>
                        using namespace std;
                        int main()
                        {
                            int n, a, x;
                            cin >> n >> a >> x;
                            cout << n - a * x;
                            return 0;
                        }
                        
                        • -1
                          @ 2023-2-11 15:37:18
                          #include <bits/stdc++.h>
                          using namespace std;
                          int main()
                          {
                              int n,a,x;
                              cin >> n>>a>>x;
                          	cout << n-a*x;
                              return 0;
                          }
                          
                          • -1
                            @ 2023-2-10 14:44:13

                            aaaaaa

                            • -1
                              @ 2023-2-10 14:44:03

                              jjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj

                              • -1
                                @ 2023-2-7 14:04:01

                                非常简单

                                #include <bits/stdc++.h>
                                using namespace std;
                                int main()
                                {
                                    int a,n,x,sum=0;
                                    cin >> n >> a >> x  ;
                                    sum=n-a*x;
                                    cout<<sum;
                                    return 0;
                                }
                                
                                • -1
                                  @ 2022-5-26 13:52:41

                                  题解:简单数学知识,n-a*x,计算剩余数量。

                                  • -4
                                    @ 2022-8-17 13:04:05

                                    #include <bits/stdc++.h> using namespace std; int main() { int n, a, x; cin >> n >> a >> x; cout << n - a * x;

                                    return 0;

                                    } image

                                    • -4
                                      @ 2022-8-2 21:22:38

                                      有手就行

                                      
                                      

                                      #include <bits/stdc++.h> using namespace std; int main() { int n,a,x; cin >> n >> a >> x; cout << n - a * x;//总量-每次数*次数 return 0; }

                                      
                                      

                                      信息

                                      ID
                                      596
                                      时间
                                      1000ms
                                      内存
                                      64MiB
                                      难度
                                      2
                                      标签
                                      递交数
                                      7310
                                      已通过
                                      4254
                                      上传者