結果
| 問題 |
No.570 3人兄弟(その1)
|
| コンテスト | |
| ユーザー |
tokizo_
|
| 提出日時 | 2017-10-19 21:26:56 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 246 bytes |
| コンパイル時間 | 147 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 10,752 KB |
| 最終ジャッジ日時 | 2024-11-21 07:42:33 |
| 合計ジャッジ時間 | 872 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 3 WA * 2 |
ソースコード
def main():
H = []
for _ in range(3):
H.append(int(input()))
H_sort = sorted(H, reverse = True)
alp = ["A", "B", "C"]
for x in range(3):
print(alp[H_sort.index(H[x])])
if __name__ == "__main__":
main()
tokizo_