2 条题解

  • 1
    @ 2024-10-6 16:45:34
    #include<bits/stdc++.h>
    using namespace std;
    int main(){
    	int a,b,sum=0,n=8;
    	for(int i=1;i<=7;i++){
    		cin>>a>>b;
    		if(a+b>n){
    			n=a+b;
    			sum=i; 
    		} 
    	}
    	cout<<sum;
    	return 0;
    }
    
    
    
    • 1
      @ 2024-9-30 20:32:12

      尝试2,已通过2,还难度10,服了.

      • 1

      信息

      ID
      438
      时间
      1000ms
      内存
      128MiB
      难度
      2
      标签
      递交数
      69
      已通过
      41
      上传者