結果

問題 No.5016 Worst Mayor
ユーザー Shawn stayCShawn stayC
提出日時 2023-04-29 14:46:36
言語 C++17
(gcc 12.3.0 + boost 1.83.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
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
23,400 KB
testcase_01 AC 76 ms
24,144 KB
testcase_02 AC 74 ms
23,256 KB
testcase_03 AC 78 ms
23,844 KB
testcase_04 AC 80 ms
23,412 KB
testcase_05 AC 79 ms
23,424 KB
testcase_06 AC 80 ms
24,156 KB
testcase_07 AC 80 ms
24,276 KB
testcase_08 AC 80 ms
24,168 KB
testcase_09 AC 80 ms
23,832 KB
testcase_10 AC 79 ms
24,156 KB
testcase_11 AC 81 ms
23,556 KB
testcase_12 AC 80 ms
23,484 KB
testcase_13 AC 80 ms
24,144 KB
testcase_14 AC 79 ms
23,256 KB
testcase_15 AC 81 ms
23,556 KB
testcase_16 AC 81 ms
23,820 KB
testcase_17 AC 80 ms
23,556 KB
testcase_18 AC 80 ms
23,544 KB
testcase_19 AC 82 ms
24,000 KB
testcase_20 AC 83 ms
23,940 KB
testcase_21 AC 81 ms
23,388 KB
testcase_22 AC 79 ms
23,832 KB
testcase_23 AC 82 ms
23,952 KB
testcase_24 AC 80 ms
23,856 KB
testcase_25 AC 80 ms
24,264 KB
testcase_26 AC 78 ms
23,412 KB
testcase_27 AC 80 ms
23,520 KB
testcase_28 AC 80 ms
24,192 KB
testcase_29 AC 80 ms
23,256 KB
testcase_30 AC 81 ms
23,364 KB
testcase_31 AC 81 ms
23,820 KB
testcase_32 AC 80 ms
23,556 KB
testcase_33 AC 81 ms
23,544 KB
testcase_34 AC 80 ms
23,544 KB
testcase_35 AC 81 ms
23,664 KB
testcase_36 AC 80 ms
24,000 KB
testcase_37 AC 80 ms
24,168 KB
testcase_38 AC 81 ms
23,916 KB
testcase_39 AC 81 ms
23,616 KB
testcase_40 AC 80 ms
23,376 KB
testcase_41 AC 80 ms
23,916 KB
testcase_42 AC 79 ms
24,132 KB
testcase_43 AC 81 ms
23,412 KB
testcase_44 AC 81 ms
24,000 KB
testcase_45 AC 81 ms
23,544 KB
testcase_46 AC 80 ms
23,244 KB
testcase_47 AC 80 ms
23,664 KB
testcase_48 AC 80 ms
23,424 KB
testcase_49 AC 80 ms
23,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
	}
}
0