結果
| 問題 |
No.932 解法破綻!高橋君
|
| コンテスト | |
| ユーザー |
Novi
|
| 提出日時 | 2019-12-01 11:36:09 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 135 bytes |
| コンパイル時間 | 497 ms |
| コンパイル使用メモリ | 12,416 KB |
| 実行使用メモリ | 11,264 KB |
| 最終ジャッジ日時 | 2024-11-21 04:31:03 |
| 合計ジャッジ時間 | 1,995 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 15 WA * 5 |
ソースコード
s=input()
for i in range(len(s)):
if s[i]!='A' or s[i]!="C" or s[i]!=",":
print("Failed...")
exit()
print("Done!")
Novi