2 条题解

  • 0
    @ 2025-4-14 21:26:37

    没想到吧,粘贴是假的

    • -1
      @ 2024-10-2 14:54:05
      #include<bits/stdc++.h>
      using namespace std;
      int main(){
        	int i,j,k,x,y,a=0;
        	for(i=1;i<=5;i++){
      	  	for(j=1;j<=5;j++){
      		  	for(k=1;k<=5;k++){
      			  	for(x=1;x<=5;x++){
      				  	for(y=1;y<=5;y++){
      					  	if(i!=2||i!=5||j!=4||j!=5||k!=1||x!=4||y!=2||y!=5){
      						  	if(i!=j||i!=k||i!=x||i!=y||j!=k||j!=x||j!=y||k!=x||k!=y||x!=y){
      							  	a+=1;
      							}
      						}
      					}
      				}
      			}
      		}
      	}
      	cout<<a;
      	return 0;
      }
      
      • 1

      信息

      ID
      97
      时间
      1000ms
      内存
      256MiB
      难度
      5
      标签
      递交数
      56
      已通过
      21
      上传者