74 条题解

  • 0
    @ 2023-12-4 21:02:43

    #include <iostream> using namespace std; int main() { int 甲 = 17,乙 = 25; for(int i = 1;i <= 100;i++) ...

    • 0
      @ 2023-11-26 11:27:42
      #include <bits/stdc++.h>
      using namespace std;
      int main()
      {
          int jia = 17, yi = 25;
          for (int i=1;i<=100;i++)
          {
              jia -= 1;
              yi += 1;
              if (yi / jia == 2 && yi % jia == 0)
              {
                  cout << i;
                  return 0;
              }
          }
          return 0;
      }
      
      • 0
        @ 2023-11-6 19:23:43

        //懒人必备,直接算。 #include <bits/stdc++.h> using namespace std; int main() { cout << "3";//呵呵 return 0; }//已AC,请放心使用

        • 0
          @ 2023-10-6 22:00:01
          #include<bits/stdc++.h>
          using namespace std;
          int main()
          {
              cout << "3";
              return 0;
          }//A
          
          • 0
            @ 2023-8-31 14:32:53

            全网第三短程序!求赞。

            #include<iostream>
            using namespace std;
            int main()
            {
                int a=17,b=25,c;
                c=(a+b)/3;
                cout<<a-c;
                return 0;
            }
            
            • 0
              @ 2023-8-28 11:02:23
              #include <bits/stdc++.h>
              using namespace std;
              int main()
              {
                  cout << 3 << endl;
                  return 0;
              }
              
              • 0
                @ 2023-8-27 15:17:44

                简直是数学题 直接输出3没意义,重在过程。

                #include <iostream>
                using namespace std;
                int main()
                {
                    int j=17,y=25,ja,sum,n;//j是甲原来的17,ja是甲变化后的,y是乙原来的,sum是不变的总数,n是要求的数。
                    sum=j+y;//求总数。
                    ja=sum/(2+1)*1;//变化后甲占总数的1/(2+1),1/3。
                    n=j-ja;//求差。
                    cout << n;
                    return 0;
                }
                
                • 0
                  @ 2023-8-27 14:34:52

                  如何AC?

                  #include <bits/stdc++.h>
                  using namespace std;
                  int main()
                  {
                  int n;
                  cin >> n;
                  cout << 3 << endl;
                  return 0;
                  }
                  
                  • 0
                    @ 2023-8-16 9:59:55
                    #include <iostream>
                    using namespace std;
                    int main()
                    {
                        cout <<17-((17 + 25) / (2 + 1));
                        return 0;
                    }
                    
                    • 0
                      @ 2023-8-14 20:42:07

                      正统的数学题!

                      #include <iostream>
                      using namespace std;
                      int main()
                      {
                          int a;
                          a = (17 + 25) / (2 + 1);
                          cout << 17 - a;
                          return 0; 
                      }
                      
                      • 0
                        @ 2023-8-14 12:38:03

                        LTC 属实“好做”


                        #include<bits/stdc++.h>
                        using namespace std;
                        int main()
                        {
                            cout<<3;
                            return 0;
                        }
                        
                        </span>
                        • 0
                          @ 2023-8-13 15:46:33

                          数学好的可以口算出来,,,,于是……

                          #include <iostream>
                          using namespace std;
                          int main()
                          {
                              cout << 3;
                              return 0;
                          }
                          
                          • 0
                            @ 2023-8-11 13:43:48

                            这个方法有点笨,仅供借鉴,脑子不好用的推荐; 运用枚举法,把x从1到25依次判断条件是否成立(x表示调走几人)

                            #include<iostream>
                            using namespace std;
                            int main()
                            {
                                int j=17,y=25,x=1;
                                for (int i=1;i<=15;i++)
                                {
                                    x=i;
                                    j-=x;
                                    y+=x;
                                    if (y%j==0)
                                    {
                                        if (y/j==2)
                                        {
                                            cout << x;
                                        }
                                    }
                                    j=17;
                                    y=25;//加减完以后再恢复初始化
                                }
                                return 0;
                            }
                            

                            //方法二 这个方法有点类似与方程,先根据题目列出方程: 2(17-x)=25+x 再移项 2x+x=34-25 // #include<iostream using namespace std; int main() { int j=17,y=25,x=1; for (int i=1;i<=15;i++) { x=i; if (3*x=9) { cout << i; }

                            • 0
                              @ 2023-8-9 21:58:16

                              @所有人,不要直接输出答案!有意思吗?我们要的是做题的过程,来看看思路吧~我们可以用 for循环来一次判断乙除以甲是否没有余数并且等于2,成立就直接输出循环次数,并且return 0终止程序。上代码!

                              #include <bits/stdc++.h>
                              using namespace std;
                              int main()
                              {
                                  int jia = 17, yi = 25;
                                  for (int i=1;i<=100;i++)
                                  {
                                      jia -= 1;
                                      yi += 1;
                                      if (yi / jia == 2 && yi % jia == 0)
                                      {
                                          cout << i;
                                          return 0;
                                      }
                                  }
                                  return 0;
                              }
                              
                              • 0
                                @ 2023-8-7 14:00:24

                                这一定是最短题解


                                按小学计算题的思路:17-(17+25)/3就可以算出,答案是三。 那么...

                                #include <bits/stdc++.h>
                                int main(){std::cout<<3<<std::endl;}
                                

                                为了缩短代码, 省去了

                                using namespace std;
                                

                                以及

                                return 0;
                                

                                两行解决问题。 OK,That's all.Thanks for watching.

                                • 0
                                  @ 2023-8-6 14:10:24

                                  image

                                • 0
                                  @ 2023-8-5 8:55:49
                                  #include <iostream>
                                  using namespace std;
                                  int main()
                                  {
                                      cout << 3;
                                      return 0;
                                  }
                                  

                                  这样都能过!

                                  • 0
                                    @ 2023-8-3 15:42:59

                                    这道题同样的是灰常简单👍 题解如下: 1.正经人数学计算

                                    #include<iostream>
                                    using namespace std;
                                    int main()
                                    {
                                        int jia = 17, yi = 25;
                                        for (int i = 1;i <= jia + yi;i++)
                                        {
                                            if ((yi + i)/(jia - i) == 2)
                                            {
                                                cout << i;
                                                break;//终止循环
                                            }
                                        }
                                        return 0;
                                    }
                                    

                                    2.真正AC

                                    #include<iostream>
                                    using namespace std;
                                    int main()
                                    {
                                        cout << 3;
                                        return 0;
                                    }
                                    
                                    • 0
                                      @ 2023-8-2 22:13:50
                                      #include <bits/stdc++.h>
                                      using namespace std;
                                      int main()
                                      {
                                          cout<<3;
                                          return 0;
                                      }
                                      直接偷鸡 (点个赞吧)```
                                      
                                      • 0
                                        @ 2023-7-30 16:48:40

                                        解:设甲组搞了X人去乙组。 (25+X)÷(17-X)=2 25+X=2(17-X) 25+X=2×17-2X X+25=34-2X X=34-25-2X X=9-2X (2+1)X=9 3X=9 X=3 OK,直接cout << 3;

                                        信息

                                        ID
                                        346
                                        时间
                                        1000ms
                                        内存
                                        16MiB
                                        难度
                                        3
                                        标签
                                        递交数
                                        4651
                                        已通过
                                        2683
                                        上传者