74 条题解

  • -1
    @ 2023-8-11 13:40:47
    #include <bits/stdc++.h>
    using namespace std;
    int main()
    {
        cout << 3;
        return 0;
    }
    
    • -2
      @ 2023-8-8 9:56:39
      #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;
      }
      

      别忘了点赞

      • -2
        @ 2023-7-28 18:32:08
        #include<iostream> 
        int main() 
        { 
            std::cout<<3; 
        }
        
        • -2
          @ 2023-6-9 22:47:00
          //方法1
          #include <bits/stdc++.h>
          using namespace std;
          int main( )
          {
              cout<<17-(17+25)/3;
              return 0;
          }
          
          //方法2
          #include <bits/stdc++.h>
          using namespace std;
          int main()
          {
              int a=17,b=25,i=0;
              while(b! =a*2)
              {
                   ++i;
                   --a;
              }
              cout<<i;
              return 0;
          }
          

          两种方法,随便学习,如果想要懒人方法就看其他人的吧(我放了些空格,请仔细观察) 完工!🎉️ 🎉️ 🎉️

          • -2
            @ 2023-2-11 10:51:58
            #include <bits/stdc++.h>
            int main(){
            std::cout << 3;
            return 0;
            }
            

            懒人做法,超级简单,点赞再抱走

            • -2
              @ 2022-8-26 9:59:31

              这其实是一道稍稍复杂的和倍问题,相信大家在学校里就学过了。 话不多说,上代码!!!

              #include <iostream>

              using namespace std;

              int main()

              { int jia = 17, yi = 25;//这是一个注释 。 for (int i = 1; i <= jia; i++)

              {
                  
                  if ((jia - i) * 2 == yi + 
                  i)//i依次增加1,看看什么时候甲减去i,他们的和的两倍是乙加上i。
                  
                  {
                      
                      cout << i;
                      
                      return 0;
                  
                      
                  }
                  
              }
              
              return 0;
              

              }

              • -3
                @ 2022-8-25 22:45:49

                #include <iostream> using namespace std; int main() { cout << (17+25)/3*2-25; return 0; }

                • -3
                  @ 2022-8-23 12:21:18

                  int a = 17, b = 25; cout << (a + b) / 3 * 2 - 25; return 0;

                  //上公式就是了

                  • -4
                    @ 2022-8-23 10:43:41

                    #include <iostream> using namespace std; int main() { int jia=17,yi=25; cout<<17-(17+25)/3; return 0; } 上代码

                    • -4
                      @ 2022-8-16 21:32:07

                      最简单的方法,保证看懂``` #include <bits/stdc++.h> using namespace std; int main() { int a = 17,b = 25; for(int i = 1;i <= 17;i++)//枚举17种情况,甲组最多调走17人 { a -= 1;//甲组每次减1枚举 b += 1;//乙组每次加1枚举 if(b / a == 2)//当其有二倍关系时打印此时甲组调走的人数 { cout << i << endl; break; } } return 0; }

                      
                      
                      • -5
                        @ 2022-8-26 10:01:46

                        @黄适予 (hetao4171518) ,你的方法虽然可行,但是太简单了ba?(* 8 *)

                        • -5
                          @ 2022-8-16 15:53:03
                          #include <bits/stdc++.h> 
                          using namespace std;
                          int main()
                          {
                              cout<<17-(17+25)/3;
                              return 0;
                          }
                          

                          太简单了,都不想算

                          • -5
                            @ 2022-5-22 20:03:25

                            这里其实用数学思路就可以做出来的

                            我们设从甲组抽调n人到乙组,就满足了 甲组人数*2=乙组人数,即乙组人数是甲组人数的2倍: 得到表达式 2(17n)=25+n2*(17-n)=25+n

                            接着我们一步步化简,342n=25+n34-2n=25+n

                            最后得到:3425=n+2n34-25=n+2n

                            • -10
                              @ 2022-7-20 22:27:21

                              是五

                            信息

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