4 条题解

  • 0
    @ 2023-5-13 7:35:42
    #include <iostream>
    using namespace std;
    int main() {
    	int n = 0;
    	for (int i = 1; i <= 100; i++) {
    		for (int j = 1; j <= 50; j++) {
    			for (int k = 1; k <= 20; k++) {
    				if (i * 1 + j * 2 + k * 5 == 100) n++;
    			}
    		}
    	}
    	cout << n;
    	return 0;
    }
    
    • 0
      @ 2023-2-20 21:28:36
      #include<bits/stdc++.h> using namespace std; int main(){ int s=0; for(int i=1;i<=100/1;i++){ for(int j=1;j<=100/2;j++){ for(int d=1;d<=100/5;d++){ if(i*1+j*2+d\*5==100){ s++; } } } } cout<<s; return 0; }
      
      • 0
        @ 2022-12-20 16:40:25

        #include<bits/stdc++.h> using namespace std; int main(){ int s=0; for(int i=1;i<=100/1;i++){ for(int j=1;j<=100/2;j++){ for(int d=1;d<=100/5;d++){ if(i1+j2+d*5==100){ s++; } } } } cout<<s; return 0; }

        • -3
          @ 2022-11-13 21:06:20

          #include #include using namespace std;

          int main() { cout<<"461"; }

          • 1

          信息

          ID
          18
          时间
          1000ms
          内存
          16MiB
          难度
          4
          标签
          递交数
          118
          已通过
          53
          上传者