結果

問題 No.932 解法破綻!高橋君
ユーザー miya145592miya145592
提出日時 2023-05-01 21:58:27
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 107 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 82,544 KB
実行使用メモリ 69,124 KB
最終ジャッジ日時 2024-11-20 17:58:26
合計ジャッジ時間 1,649 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,468 KB
testcase_01 AC 35 ms
53,312 KB
testcase_02 AC 34 ms
53,300 KB
testcase_03 AC 35 ms
52,884 KB
testcase_04 AC 35 ms
52,376 KB
testcase_05 AC 34 ms
53,292 KB
testcase_06 AC 35 ms
52,400 KB
testcase_07 AC 35 ms
52,680 KB
testcase_08 AC 33 ms
53,000 KB
testcase_09 AC 35 ms
52,148 KB
testcase_10 AC 34 ms
53,300 KB
testcase_11 AC 37 ms
52,892 KB
testcase_12 AC 34 ms
52,608 KB
testcase_13 AC 33 ms
52,204 KB
testcase_14 AC 35 ms
52,428 KB
testcase_15 AC 37 ms
52,628 KB
testcase_16 AC 38 ms
52,744 KB
testcase_17 MLE -
testcase_18 AC 43 ms
61,980 KB
testcase_19 AC 42 ms
60,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input().split(",")
for s in S:
    if s!="AC":
        print("Failed...")
        exit()
print("Done!")
0