結果

問題 No.570 3人兄弟(その1)
ユーザー otsunekootsuneko
提出日時 2021-05-06 11:18:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 141 bytes
コンパイル時間 313 ms
コンパイル使用メモリ 86,692 KB
実行使用メモリ 71,212 KB
最終ジャッジ日時 2023-10-12 04:29:51
合計ジャッジ時間 1,276 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
70,812 KB
testcase_01 AC 66 ms
71,000 KB
testcase_02 AC 68 ms
70,924 KB
testcase_03 AC 66 ms
71,212 KB
testcase_04 AC 66 ms
70,988 KB
testcase_05 AC 67 ms
70,964 KB
testcase_06 AC 67 ms
71,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H = []
name = ["A","B","C"]
for n in name:
    h = int(input())
    H.append((h,n))
H.sort(reverse=True)

for h in H:
    print(h[1])
0