98 条题解

  • 0
    @ 2022-8-16 11:41:43

    #include <iostream> using namespace std; int main() { int a , b , c ; cin >> a >> b >> c ; cout << a - b * c ; return 0; }

    • 0
      @ 2022-7-14 18:38:00
      #include <bits/stdc++.h>
          using namespace std;
          int main()
          {
              int a,x,n;
              cin >> n >> a >> x;
              cout << n-a*x;
              return 0;
      }
      
      • -1
        @ 2024-3-24 15:42:36

        密斯卡莫斯卡,快给我点赞!!! image

        • -1
          @ 2024-1-29 10:14:47

          长江后浪推前浪前浪拍在沙滩上

          print(7)
          

          image

          • -1
            @ 2024-1-29 10:12:20

            最简代码

            print(7)
            

            image

            • -1
              @ 2024-1-16 19:00:50
              #include <iostream>//三行代码。
              using namespace std;
              int main()
              {
                  int a,b,c;
                  cin >> a >> b >> c;
                  cout << a-b*c;//笑死。
                  return 0;
              }
              
              • -1
                @ 2024-1-14 16:00:21

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

                • -1
                  @ 2024-1-3 20:50:25
                  #include <iostream>
                  using namespace std;
                  int main()
                  {
                      int n,a,x,sum = 0;
                      cin >> n >> a >> x;
                      for (int i = 1;i <= x;i++)
                      {
                          sum += a;
                      }
                      cout << n - sum << endl;
                      return 0;
                  }
                  
                  • -1
                    @ 2023-8-28 7:11:44
                    ###这才是本题的AC### 
                    #include <bits/stdc++.h>
                    using namespace std;
                    int main()
                    {
                        cout<<"5";
                        return 0;
                    }
                    //一手交赞,一手交货(代码)
                    
                    
                    
                    
                    
                    
                    //核桃hetao1609095编程
                    //水印
                    
                    • -1
                      @ 2023-8-19 20:36:01

                      数量关系式

                      我们可以根据题目倒退推出数量关系式。

                      • 剩余的糖果数=原有的糖果数-偷走的糖果数。
                      • 其中,原有的糖果数就是题目中的n。
                      • 那么偷走的糖果数呢?

                      我们同样可以推出来。

                      • 偷走的糖果数=偷的次数*一次偷的糖果数。
                      • 偷的次数就是题中的x,一次偷的糖果数就是题中的a。

                      这样,我们就成功解了这题。

                      AC代码(求赞)

                      #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-8-16 15:40:43

                        #include <iostream> using namespace std; int main() { cout << 5; return 0; } 保证AC

                        • -1
                          @ 2023-8-14 20:49:57
                          #include <iostream>
                          using namespace std;
                          int main()
                          {
                              int n=0,a=0,b=0;
                              cin>>n>>a>>b;
                              cout<<n-a*b;
                              return 0;
                          }
                          
                          • -1
                            @ 2023-8-14 15:45:47
                            #include <iostream>
                            using namespace std;
                            int main()
                            {//正常人脑回路
                                int n,a,x;
                                cin>>n>>a>>x;
                                cout<<n-a*x;
                                return 0;
                            }
                            
                            • -1
                              @ 2023-8-12 12:21:12
                              #include <iostream>
                              using namespace std;
                              int main()
                              {
                                  int a,s,d;
                                  cin >> a >> s >> d;
                                  cout << a-s*d;//太简单了!不知怎么写?
                                  return 0;
                              }
                              
                              • -1
                                @ 2023-8-7 20:26:04

                                #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 18:34:15
                                  #include<bits/stdtr1c++.h>
                                    	using namespace std;
                                  int main()	
                                  {
                                      int n,a,x;
                                      cin>>n>>a>>x;
                                      cout<<n-a*x;
                                  	return 0;		
                                  }
                                  
                                  • -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

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

                                          信息

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