結果

問題 No.932 解法破綻!高橋君
ユーザー qwewe
提出日時 2025-05-14 12:53:33
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 128 bytes
コンパイル時間 479 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 69,120 KB
最終ジャッジ日時 2025-05-14 12:55:15
合計ジャッジ時間 1,974 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 19 MLE * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input().strip()
cases = S.split(',')
if all(case == 'AC' for case in cases):
    print("Done!")
else:
    print("Failed...")
0