結果

問題 No.5016 Worst Mayor
ユーザー Kiri8128Kiri8128
提出日時 2023-04-29 14:18:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 193 ms / 2,000 ms
コード長 260 bytes
コンパイル時間 599 ms
コンパイル使用メモリ 86,944 KB
実行使用メモリ 93,056 KB
スコア 1,495,180,150
平均クエリ数 400.00
最終ジャッジ日時 2023-04-29 14:19:04
合計ジャッジ時間 12,895 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 168 ms
92,836 KB
testcase_01 AC 172 ms
92,292 KB
testcase_02 AC 167 ms
92,568 KB
testcase_03 AC 162 ms
93,056 KB
testcase_04 AC 160 ms
92,512 KB
testcase_05 AC 169 ms
92,636 KB
testcase_06 AC 168 ms
93,028 KB
testcase_07 AC 167 ms
92,352 KB
testcase_08 AC 188 ms
92,860 KB
testcase_09 AC 165 ms
92,700 KB
testcase_10 AC 166 ms
92,928 KB
testcase_11 AC 165 ms
92,480 KB
testcase_12 AC 160 ms
92,476 KB
testcase_13 AC 168 ms
92,780 KB
testcase_14 AC 189 ms
92,628 KB
testcase_15 AC 172 ms
92,892 KB
testcase_16 AC 166 ms
92,640 KB
testcase_17 AC 169 ms
92,664 KB
testcase_18 AC 173 ms
92,524 KB
testcase_19 AC 163 ms
92,244 KB
testcase_20 AC 193 ms
92,180 KB
testcase_21 AC 168 ms
92,644 KB
testcase_22 AC 164 ms
92,288 KB
testcase_23 AC 170 ms
92,360 KB
testcase_24 AC 166 ms
92,396 KB
testcase_25 AC 166 ms
92,800 KB
testcase_26 AC 192 ms
92,196 KB
testcase_27 AC 163 ms
92,272 KB
testcase_28 AC 167 ms
92,580 KB
testcase_29 AC 169 ms
92,780 KB
testcase_30 AC 169 ms
92,928 KB
testcase_31 AC 168 ms
92,824 KB
testcase_32 AC 192 ms
92,488 KB
testcase_33 AC 165 ms
92,804 KB
testcase_34 AC 163 ms
92,784 KB
testcase_35 AC 165 ms
92,456 KB
testcase_36 AC 162 ms
93,044 KB
testcase_37 AC 161 ms
92,756 KB
testcase_38 AC 178 ms
92,388 KB
testcase_39 AC 162 ms
92,540 KB
testcase_40 AC 166 ms
92,868 KB
testcase_41 AC 162 ms
92,260 KB
testcase_42 AC 162 ms
92,384 KB
testcase_43 AC 163 ms
92,424 KB
testcase_44 AC 159 ms
92,776 KB
testcase_45 AC 166 ms
92,796 KB
testcase_46 AC 167 ms
92,848 KB
testcase_47 AC 162 ms
92,524 KB
testcase_48 AC 167 ms
92,528 KB
testcase_49 AC 171 ms
92,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

for q in range(T):
    u, v = map(int, input().split())
    if q < 100:
        print(2)
    elif q == 100:
        print(1, 7, 7, 8, 7)
    else:
        print(3)
0