結果
問題 | No.571 3人兄弟(その2) |
ユーザー |
|
提出日時 | 2024-06-11 10:11:20 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 26 ms / 2,000 ms |
コード長 | 297 bytes |
コンパイル時間 | 104 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-06-11 10:11:22 |
合計ジャッジ時間 | 1,156 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 12 |
ソースコード
A = list(map(int, input().split()))B = list(map(int, input().split()))C = list(map(int, input().split()))A = A + ["A"]B = B + ["B"]C = C + ["C"]ans = []ans.append(A)ans.append(B)ans.append(C)result = sorted(ans, key=lambda x: (-x[0], x[1]))for i in range(3):print(result[i][2])