結果
| 問題 | No.570 3人兄弟(その1) |
| コンテスト | |
| ユーザー |
Nisshy_24
|
| 提出日時 | 2018-04-19 23:27:40 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 128 bytes |
| 記録 | |
| コンパイル時間 | 449 ms |
| コンパイル使用メモリ | 20,828 KB |
| 実行使用メモリ | 15,488 KB |
| 最終ジャッジ日時 | 2026-03-14 11:21:45 |
| 合計ジャッジ時間 | 1,756 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 WA * 1 |
| other | WA * 5 |
ソースコード
ABC = {}
ABC["A"] = int(input())
ABC["B"] = int(input())
ABC["C"] = int(input())
Sort = sorted(ABC)
for n in Sort :
print(n)
Nisshy_24