結果
| 問題 | No.570 3人兄弟(その1) |
| コンテスト | |
| ユーザー |
Watson
|
| 提出日時 | 2017-11-08 13:19:54 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 461 bytes |
| 記録 | |
| コンパイル時間 | 541 ms |
| コンパイル使用メモリ | 20,828 KB |
| 実行使用メモリ | 15,324 KB |
| 最終ジャッジ日時 | 2026-05-18 04:17:37 |
| 合計ジャッジ時間 | 2,431 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 4 WA * 1 |
ソースコード
Ha = int(input())
Hb = int(input())
Hc = int(input())
if Ha > Hb and Ha > Hb:
print("A")
if Hb > Hc:
print("B")
print("C")
else:
print("C")
print("B")
elif Hb > Ha and Hb > Hc:
print("B")
if Ha > Hc:
print("A")
print("C")
else:
print("C")
print("A")
else:
print("C")
if Ha > Hb:
print("A")
print("B")
else:
print("B")
print("A")
Watson