結果
| 問題 |
No.932 解法破綻!高橋君
|
| コンテスト | |
| ユーザー |
hint908
|
| 提出日時 | 2024-04-16 21:58:55 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 92 bytes |
| コンパイル時間 | 368 ms |
| コンパイル使用メモリ | 82,000 KB |
| 実行使用メモリ | 70,840 KB |
| 最終ジャッジ日時 | 2024-10-08 02:51:34 |
| 合計ジャッジ時間 | 2,251 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 4 WA * 13 MLE * 3 |
ソースコード
s = input().split(",")
ans = "Done!"
for c in s:
if c != "AC": ans = "Falied..."
print(ans)
hint908