結果

問題 No.5016 Worst Mayor
ユーザー Kiri8128Kiri8128
提出日時 2023-04-29 13:49:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 205 ms / 2,000 ms
コード長 165 bytes
コンパイル時間 309 ms
コンパイル使用メモリ 87,016 KB
実行使用メモリ 93,296 KB
スコア 1,050,000,000
平均クエリ数 400.00
最終ジャッジ日時 2023-04-29 13:49:20
合計ジャッジ時間 11,678 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 205 ms
92,600 KB
testcase_01 AC 165 ms
93,296 KB
testcase_02 AC 162 ms
92,752 KB
testcase_03 AC 160 ms
93,176 KB
testcase_04 AC 166 ms
93,272 KB
testcase_05 AC 175 ms
92,988 KB
testcase_06 AC 181 ms
93,060 KB
testcase_07 AC 160 ms
92,964 KB
testcase_08 AC 163 ms
92,816 KB
testcase_09 AC 163 ms
92,932 KB
testcase_10 AC 162 ms
92,980 KB
testcase_11 AC 180 ms
92,716 KB
testcase_12 AC 166 ms
92,452 KB
testcase_13 AC 168 ms
92,496 KB
testcase_14 AC 168 ms
92,456 KB
testcase_15 AC 167 ms
92,472 KB
testcase_16 AC 166 ms
92,600 KB
testcase_17 AC 163 ms
92,516 KB
testcase_18 AC 168 ms
92,832 KB
testcase_19 AC 164 ms
93,104 KB
testcase_20 AC 167 ms
92,900 KB
testcase_21 AC 163 ms
93,124 KB
testcase_22 AC 160 ms
92,284 KB
testcase_23 AC 168 ms
92,784 KB
testcase_24 AC 163 ms
92,580 KB
testcase_25 AC 169 ms
93,016 KB
testcase_26 AC 167 ms
93,072 KB
testcase_27 AC 165 ms
92,932 KB
testcase_28 AC 164 ms
92,972 KB
testcase_29 AC 164 ms
92,752 KB
testcase_30 AC 185 ms
92,616 KB
testcase_31 AC 166 ms
92,976 KB
testcase_32 AC 165 ms
92,452 KB
testcase_33 AC 161 ms
93,020 KB
testcase_34 AC 162 ms
92,736 KB
testcase_35 AC 159 ms
93,136 KB
testcase_36 AC 186 ms
92,884 KB
testcase_37 AC 169 ms
93,172 KB
testcase_38 AC 163 ms
93,060 KB
testcase_39 AC 171 ms
92,944 KB
testcase_40 AC 170 ms
92,476 KB
testcase_41 AC 164 ms
92,096 KB
testcase_42 AC 187 ms
92,552 KB
testcase_43 AC 163 ms
92,532 KB
testcase_44 AC 167 ms
92,428 KB
testcase_45 AC 163 ms
92,392 KB
testcase_46 AC 161 ms
92,792 KB
testcase_47 AC 163 ms
92,772 KB
testcase_48 AC 186 ms
92,828 KB
testcase_49 AC 167 ms
92,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, T = map(int, input().split())
for _ in range(N):
    a, b, c, d = map(int, input().split())

for _ in range(T):
    u, v = map(int, input().split())
    print(3)
0