9 条题解

  • 2
    @ 2024-7-17 14:51:07

    • 0
      @ 2024-7-18 14:30:41
      
      ```#include<bits/stdc++.h> 
      using namespace std; 
      int main(){ 
          cout<<"0 25 75"<<endl; 
          cout<<"4 18 78"<<endl; 
          cout<<"8 11 81"<<endl; 
          cout<<"12 4 84"<<endl; 
      return 0; 
      }
      • 0
        @ 2024-7-17 18:21:58

        #include<bits/stdc++.h> using namespace std; int main(){ cout<<"0 25 75"<<endl; cout<<"4 18 78"<<endl; cout<<"8 11 81"<<endl; cout<<"12 4 84"<<endl; return 0; }

        • 0
          @ 2024-7-17 18:21:33

          #include<bits/stdc++.h> using namespace std; int main(){ cout<<"0 25 75"<<endl; cout<<"4 18 78"<<endl; cout<<"8 11 81"<<endl; cout<<"12 4 84"<<endl; return 0; }

          • 0
            @ 2024-7-17 13:49:04

            xz#include<bits/stdc++.h> using namespace std; int main(){ cout<<"0 25 75"<<endl; cout<<"4 18 78"<<endl; cout<<"8 11 81"<<endl; cout<<"12 4 84"<<endl; return 0; }

            • -1
              @ 2024-7-18 14:29:47
              
              

              #include<bits/stdc++.h> using namespace std; int main(){ cout<<"0 25 75"<<endl; cout<<"4 18 78"<<endl; cout<<"8 11 81"<<endl; cout<<"12 4 84"<<endl; return 0; }

              • -1
                @ 2024-7-18 11:53:36

                #include<bits/stdc++.h> using namespace std; int main(){ cout<<"0"<<" "<<"25"<<" "<<"75"<<endl; cout<<"4"<<" "<<"18"<<" "<<"78"<<endl; cout<<"8"<<" "<<"11"<<" "<<"81"<<endl; cout<<"12"<<" "<<"4"<<" "<<"84"<<endl; return 0; }

                • -2
                  @ 2024-4-13 17:27:20
                  #include<bits/stdc++.h>
                  using namespace std; 
                  int main() { 
                  	int x,y,z,n;
                  	for(x=0;x<=20;x++){
                  		for(y=0;y<=33;y++){
                  			for(z=0;z<=300;z++){
                  				if(x+y+z == 100 && x*5+y*3+z/3 == 100 && z%3 == 0){
                  					cout << x << " " << y << " " << z << endl;
                  				}
                  			}
                  		}
                  	}
                  return 0; 
                  }
                  
                  • -6
                    @ 2024-3-15 16:22:23

                    #include<bits/stdc++.h> using namespace std; int main() { int a,b,c,yes,no; cin>>a>>b>>c; if(a+b>c&&a+c>b&&b+c>a) { cout<<"yes"; } else { cout<<"no"; } return 0; }

                    • 1

                    信息

                    ID
                    2090
                    时间
                    1000ms
                    内存
                    256MiB
                    难度
                    3
                    标签
                    递交数
                    181
                    已通过
                    108
                    上传者