結果
| 問題 | No.570 3人兄弟(その1) |
| コンテスト | |
| ユーザー |
mossari_aozora
|
| 提出日時 | 2019-10-02 20:10:42 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 95 ms / 2,000 ms |
| コード長 | 206 bytes |
| 記録 | |
| コンパイル時間 | 334 ms |
| コンパイル使用メモリ | 20,572 KB |
| 実行使用メモリ | 15,228 KB |
| 最終ジャッジ日時 | 2026-04-19 07:40:31 |
| 合計ジャッジ時間 | 1,709 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 5 |
ソースコード
def solve():
arr = [["A", int(input())], ["B", int(input())], ["C", int(input())]]
sortedArr = sorted(arr, key=lambda x: x[1], reverse=True)
for row in sortedArr:
print(row[0])
solve()
mossari_aozora