1 条题解

  • 0
    @ 2023-6-11 12:16:44

    C++ :

    #include<bits/stdc++.h>
    using namespace std;
    int main(){
        int a;
        cin>>a;
        if(a==2){
        	cout<<1<<endl;
    	}
    	else if(a==3){
    		cout<<3<<endl;
    	}
    	else if(a==4){
    		cout<<6<<endl;
    	}
    		else if(a==5){
    		cout<<10<<endl;
    	}
    		else if(a==6){
    		cout<<15<<endl;
    	}
    		else if(a==7){
    		cout<<21<<endl;
    	}
    		else if(a==8){
    		cout<<28<<endl;
    	}
    		else if(a==9){
    		cout<<36<<endl;
    	}
    		else if(a==10){
    		cout<<45<<endl;
    	}
    	return 0;
    }
    
    

    Python :

    n = int(input())
    t = 0
    for i in range(1, n):
        t += i
    print(t)
    
    • 1

    【入门】需要举办多少场足球赛?

    信息

    ID
    2252
    时间
    1000ms
    内存
    16MiB
    难度
    10
    标签
    递交数
    1
    已通过
    1
    上传者