結果
| 問題 |
No.570 3人兄弟(その1)
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2017-11-16 11:13:38 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 282 bytes |
| コンパイル時間 | 93 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 10,752 KB |
| 最終ジャッジ日時 | 2024-11-25 06:14:01 |
| 合計ジャッジ時間 | 803 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 3 WA * 2 |
ソースコード
list = []
for i in range(3):
list.append(int(input()))
#print(list)
Max = list.index(max(list))
Min = list.index(min(list))
list[Max] = "A"
list[Min] = "C"
for i in range(3):
if i != Max and i != Min:
list[i] = "B"
for i in range(3):
print(list[i])