結果

問題 No.5016 Worst Mayor
ユーザー noriaokinoriaoki
提出日時 2023-04-29 13:26:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 190 ms / 2,000 ms
コード長 194 bytes
コンパイル時間 413 ms
コンパイル使用メモリ 87,216 KB
実行使用メモリ 93,232 KB
スコア 1,050,000,000
平均クエリ数 400.00
最終ジャッジ日時 2023-04-29 13:27:12
合計ジャッジ時間 13,144 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 182 ms
92,660 KB
testcase_01 AC 177 ms
92,544 KB
testcase_02 AC 181 ms
93,132 KB
testcase_03 AC 182 ms
93,172 KB
testcase_04 AC 181 ms
92,608 KB
testcase_05 AC 178 ms
93,216 KB
testcase_06 AC 178 ms
93,232 KB
testcase_07 AC 176 ms
92,724 KB
testcase_08 AC 178 ms
92,600 KB
testcase_09 AC 180 ms
92,812 KB
testcase_10 AC 184 ms
92,720 KB
testcase_11 AC 175 ms
92,448 KB
testcase_12 AC 177 ms
92,184 KB
testcase_13 AC 176 ms
93,012 KB
testcase_14 AC 177 ms
92,908 KB
testcase_15 AC 179 ms
92,340 KB
testcase_16 AC 176 ms
92,876 KB
testcase_17 AC 185 ms
92,928 KB
testcase_18 AC 178 ms
92,800 KB
testcase_19 AC 178 ms
92,772 KB
testcase_20 AC 178 ms
92,744 KB
testcase_21 AC 177 ms
92,820 KB
testcase_22 AC 178 ms
92,576 KB
testcase_23 AC 190 ms
92,776 KB
testcase_24 AC 183 ms
93,212 KB
testcase_25 AC 183 ms
93,068 KB
testcase_26 AC 178 ms
92,548 KB
testcase_27 AC 178 ms
92,640 KB
testcase_28 AC 177 ms
92,948 KB
testcase_29 AC 185 ms
92,508 KB
testcase_30 AC 178 ms
92,700 KB
testcase_31 AC 177 ms
92,636 KB
testcase_32 AC 177 ms
92,584 KB
testcase_33 AC 178 ms
92,164 KB
testcase_34 AC 179 ms
92,352 KB
testcase_35 AC 190 ms
92,704 KB
testcase_36 AC 180 ms
92,560 KB
testcase_37 AC 181 ms
92,996 KB
testcase_38 AC 174 ms
93,052 KB
testcase_39 AC 174 ms
93,192 KB
testcase_40 AC 175 ms
92,708 KB
testcase_41 AC 182 ms
92,340 KB
testcase_42 AC 176 ms
92,920 KB
testcase_43 AC 176 ms
92,636 KB
testcase_44 AC 179 ms
92,860 KB
testcase_45 AC 181 ms
92,368 KB
testcase_46 AC 176 ms
92,640 KB
testcase_47 AC 190 ms
92,980 KB
testcase_48 AC 178 ms
93,008 KB
testcase_49 AC 176 ms
92,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, T = map(int, input().split())
ABCD = [map(int, input().split()) for _ in range(N)]

block = [[0] * 14 for _ in range(14)]

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