1 条题解

  • 1
    @ 2024-11-10 17:21:25
    #include<iostream>
    using namespace std;
    int main(){
    	int n;
    	cin >> n;
    	int small;
    	int t;
    	for(int i = 1 ; i <= n ; i ++){
    		int w , d;
    		cin >> w >> d;
    		t = (d - 1) * 7 + 1 + w;
    		if(i == 1){
    			small = t;
    		}else{
    			if(small > t){
    				small = t;
    			}
    		}
    	}
    	cout << small;
    	return 0;
    }
    

    信息

    ID
    4398
    时间
    1000ms
    内存
    256MiB
    难度
    4
    标签
    (无)
    递交数
    36
    已通过
    19
    上传者