比赛 果蝇王邀请赛div2 评测结果 WWWWWWEEEE
题目名称 果蝇炸弹 最终得分 0
用户昵称 exil 运行时间 0.949 s
代码语言 C++ 内存使用 4.81 MiB
提交时间 2026-08-27 12:14:38
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
#define int long long
int n;
int a[200005];
int pan[200005];
int w[200005];
int r[200005];
signed main(){
    freopen("bombmine.in","r",stdin);
    freopen("bombmine.out","w",stdout);
    ios::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);
    int c;
    cin>>c;
    
    cin>>n;
    for(int i = 1;i<=n;i++){
        cin>>a[i]>>r[i];
    }
    
    cout<<17;
        
    
    
    
    
    return 0;
}