結果

問題 No.5016 Worst Mayor
ユーザー hirayuu_ychirayuu_yc
提出日時 2023-07-28 21:33:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 204 ms / 2,000 ms
コード長 146 bytes
コンパイル時間 536 ms
コンパイル使用メモリ 87,136 KB
実行使用メモリ 94,028 KB
スコア 1,050,000,000
平均クエリ数 400.00
最終ジャッジ日時 2023-07-28 21:33:50
合計ジャッジ時間 12,654 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 179 ms
93,832 KB
testcase_01 AC 176 ms
93,756 KB
testcase_02 AC 174 ms
93,460 KB
testcase_03 AC 175 ms
93,796 KB
testcase_04 AC 204 ms
93,372 KB
testcase_05 AC 175 ms
93,528 KB
testcase_06 AC 176 ms
93,360 KB
testcase_07 AC 178 ms
93,256 KB
testcase_08 AC 178 ms
93,308 KB
testcase_09 AC 176 ms
93,676 KB
testcase_10 AC 178 ms
93,476 KB
testcase_11 AC 175 ms
93,884 KB
testcase_12 AC 184 ms
93,916 KB
testcase_13 AC 177 ms
93,816 KB
testcase_14 AC 176 ms
93,124 KB
testcase_15 AC 177 ms
93,396 KB
testcase_16 AC 176 ms
93,744 KB
testcase_17 AC 179 ms
93,944 KB
testcase_18 AC 179 ms
93,596 KB
testcase_19 AC 175 ms
93,344 KB
testcase_20 AC 177 ms
93,888 KB
testcase_21 AC 175 ms
93,860 KB
testcase_22 AC 177 ms
93,648 KB
testcase_23 AC 176 ms
93,496 KB
testcase_24 AC 179 ms
93,604 KB
testcase_25 AC 179 ms
93,852 KB
testcase_26 AC 181 ms
93,624 KB
testcase_27 AC 180 ms
93,924 KB
testcase_28 AC 177 ms
93,556 KB
testcase_29 AC 179 ms
93,700 KB
testcase_30 AC 175 ms
93,712 KB
testcase_31 AC 177 ms
93,332 KB
testcase_32 AC 178 ms
93,264 KB
testcase_33 AC 174 ms
94,028 KB
testcase_34 AC 172 ms
93,360 KB
testcase_35 AC 172 ms
93,180 KB
testcase_36 AC 177 ms
93,400 KB
testcase_37 AC 175 ms
93,564 KB
testcase_38 AC 175 ms
93,404 KB
testcase_39 AC 175 ms
93,316 KB
testcase_40 AC 176 ms
93,744 KB
testcase_41 AC 180 ms
93,128 KB
testcase_42 AC 180 ms
93,648 KB
testcase_43 AC 181 ms
93,444 KB
testcase_44 AC 175 ms
93,552 KB
testcase_45 AC 178 ms
93,508 KB
testcase_46 AC 181 ms
93,620 KB
testcase_47 AC 180 ms
93,488 KB
testcase_48 AC 178 ms
93,596 KB
testcase_49 AC 177 ms
93,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,T=map(int,input().split())
people=[tuple(map(int,input().split())) for i in range(N)]
for i in range(T):
	u,v=map(int,input().split())
	print(3)
0