結果

問題 No.571 3人兄弟(その2)
ユーザー caleicalei
提出日時 2020-01-27 14:20:21
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 34 ms / 2,000 ms
コード長 198 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-09-14 11:55:57
合計ジャッジ時間 1,234 ms
ジャッジサーバーID
(参考情報)
judge6 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

# yukicoder No.571 3人兄弟(その2) 2020/01/27s

ls=['A','B','C']
hw=[list(map(int,input().split()))+[i] for i in range(3)]
hw.sort(key=lambda x: (-x[0],x[1]))
[print(ls[e[2]]) for e in hw]
0