結果
| 問題 | No.570 3人兄弟(その1) |
| コンテスト | |
| ユーザー |
nasubi24
|
| 提出日時 | 2020-11-02 19:00:45 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0) |
| 結果 |
AC
|
| 実行時間 | 94 ms / 2,000 ms |
| + 107µs | |
| コード長 | 182 bytes |
| 記録 | |
| コンパイル時間 | 295 ms |
| コンパイル使用メモリ | 21,280 KB |
| 実行使用メモリ | 15,740 KB |
| 最終ジャッジ日時 | 2026-08-23 01:56:44 |
| 合計ジャッジ時間 | 2,258 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 5 |
ソースコード
num=[]
num.append([int(input()),"A"])
num.append([int(input()),"B"])
num.append([int(input()),"C"])
num.sort(key=lambda x: x[0],reverse=True)
for i in range(3):
print(num[i][1])
nasubi24