結果
問題 | No.5016 Worst Mayor |
ユーザー | Shawn stayC |
提出日時 | 2023-04-29 14:46:36 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 84 ms / 2,000 ms |
コード長 | 277 bytes |
コンパイル時間 | 2,079 ms |
コンパイル使用メモリ | 200,100 KB |
実行使用メモリ | 24,276 KB |
スコア | 1,050,000,000 |
平均クエリ数 | 400.00 |
最終ジャッジ日時 | 2023-04-29 14:46:50 |
合計ジャッジ時間 | 8,978 ms |
ジャッジサーバーID (参考情報) |
judge14 / judge15 |
純コード判定しない問題か言語 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 50 |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; #define rep(i,l,r) for(int i=(l);i<(r);++i) int main(){ int n,t; cin>>n>>t; vector<int> a(n),b(n),c(n),d(n); rep(i,0,n) cin>>a[i]>>b[i]>>c[i]>>d[i]; rep(i,0,t){ int u,v; cin>>u>>v; cout<<3<<endl; } }