結果

問題 No.1795 AtCoder Heuristic Rating coloring
ユーザー SchneeSchnee
提出日時 2021-12-24 05:22:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 318 ms / 2,000 ms
コード長 112 bytes
コンパイル時間 402 ms
コンパイル使用メモリ 11,736 KB
実行使用メモリ 37,132 KB
最終ジャッジ日時 2023-10-20 07:49:20
合計ジャッジ時間 9,059 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
9,928 KB
testcase_01 AC 27 ms
9,928 KB
testcase_02 AC 29 ms
9,928 KB
testcase_03 AC 28 ms
9,948 KB
testcase_04 AC 32 ms
10,524 KB
testcase_05 AC 33 ms
10,524 KB
testcase_06 AC 32 ms
10,476 KB
testcase_07 AC 34 ms
10,484 KB
testcase_08 AC 33 ms
10,500 KB
testcase_09 AC 33 ms
10,612 KB
testcase_10 AC 34 ms
10,632 KB
testcase_11 AC 34 ms
10,516 KB
testcase_12 AC 30 ms
9,944 KB
testcase_13 AC 29 ms
9,952 KB
testcase_14 AC 28 ms
9,940 KB
testcase_15 AC 28 ms
9,940 KB
testcase_16 AC 29 ms
9,944 KB
testcase_17 AC 29 ms
9,940 KB
testcase_18 AC 29 ms
9,948 KB
testcase_19 AC 28 ms
9,940 KB
testcase_20 AC 28 ms
9,956 KB
testcase_21 AC 29 ms
9,948 KB
testcase_22 AC 28 ms
9,952 KB
testcase_23 AC 28 ms
9,944 KB
testcase_24 AC 28 ms
9,952 KB
testcase_25 AC 28 ms
9,952 KB
testcase_26 AC 28 ms
9,944 KB
testcase_27 AC 28 ms
9,952 KB
testcase_28 AC 28 ms
9,944 KB
testcase_29 AC 29 ms
9,952 KB
testcase_30 AC 29 ms
9,940 KB
testcase_31 AC 30 ms
9,944 KB
testcase_32 AC 131 ms
19,692 KB
testcase_33 AC 100 ms
17,364 KB
testcase_34 AC 187 ms
25,148 KB
testcase_35 AC 161 ms
24,400 KB
testcase_36 AC 184 ms
25,152 KB
testcase_37 AC 119 ms
18,236 KB
testcase_38 AC 117 ms
18,112 KB
testcase_39 AC 204 ms
26,148 KB
testcase_40 AC 139 ms
20,140 KB
testcase_41 AC 184 ms
25,232 KB
testcase_42 AC 131 ms
19,584 KB
testcase_43 AC 145 ms
20,080 KB
testcase_44 AC 175 ms
23,848 KB
testcase_45 AC 135 ms
19,712 KB
testcase_46 AC 217 ms
26,508 KB
testcase_47 AC 77 ms
14,284 KB
testcase_48 AC 138 ms
19,584 KB
testcase_49 AC 231 ms
27,176 KB
testcase_50 AC 132 ms
19,192 KB
testcase_51 AC 116 ms
18,304 KB
testcase_52 AC 244 ms
30,336 KB
testcase_53 AC 250 ms
30,336 KB
testcase_54 AC 308 ms
37,132 KB
testcase_55 AC 318 ms
37,128 KB
testcase_56 AC 318 ms
37,128 KB
testcase_57 AC 314 ms
37,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

l={}
for i in open(0).readlines()[1:]:
    k,v=i.split()
    l[k]=v
for i in sorted(l.keys()):
    print(i,l[i])
0