結果
| 問題 | No.570 3人兄弟(その1) |
| コンテスト | |
| ユーザー |
37zigen
|
| 提出日時 | 2018-07-12 19:21:21 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 106 ms / 2,000 ms |
| コード長 | 153 bytes |
| 記録 | |
| コンパイル時間 | 328 ms |
| コンパイル使用メモリ | 20,832 KB |
| 実行使用メモリ | 15,360 KB |
| 最終ジャッジ日時 | 2026-04-18 23:39:59 |
| 合計ジャッジ時間 | 2,319 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 5 |
ソースコード
table=[]
Ha=int(input())
Hb=int(input())
Hc=int(input())
table=[(Ha,"A"),(Hb,"B"),(Hc,"C")]
table.sort()
table.reverse()
for _ in table:
print(_[1])
37zigen