結果

問題 No.571 3人兄弟(その2)
ユーザー Soratop
提出日時 2020-12-23 14:44:32
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 134 bytes
コンパイル時間 84 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-09-21 16:23:41
合計ジャッジ時間 1,119 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 2
other WA * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

a=sorted([list(map(int,input().split()))+[chr(65+i)] for i in range(3)],key=lambda x:(-x[0],x[1]))
print(*[a[i][2] for i in range(3)])
0