結果

問題 No.571 3人兄弟(その2)
コンテスト
ユーザー rin204
提出日時 2020-09-08 07:35:22
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 164 bytes
コンパイル時間 108 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-11-29 11:47:32
合計ジャッジ時間 1,188 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 1
other AC * 4 WA * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

abc = "ABC"
hw = [list(map(int, input().split())) + [i] for i in range(3)]
hw.sort(key = lambda x:x[1])
hw.sort(reverse = True)
for _, _, i in hw:
    print(abc[i])
0