結果

問題 No.932 解法破綻!高橋君
ユーザー deepjugglingdeepjuggling
提出日時 2023-06-08 07:23:31
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 115 bytes
コンパイル時間 728 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 70,868 KB
最終ジャッジ日時 2024-06-09 17:45:47
合計ジャッジ時間 2,656 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
52,452 KB
testcase_01 AC 30 ms
52,372 KB
testcase_02 AC 29 ms
52,496 KB
testcase_03 AC 30 ms
51,624 KB
testcase_04 AC 30 ms
52,908 KB
testcase_05 AC 30 ms
52,896 KB
testcase_06 AC 29 ms
53,428 KB
testcase_07 AC 30 ms
52,404 KB
testcase_08 AC 30 ms
52,212 KB
testcase_09 AC 30 ms
52,552 KB
testcase_10 AC 30 ms
53,320 KB
testcase_11 AC 30 ms
51,696 KB
testcase_12 AC 30 ms
52,140 KB
testcase_13 AC 29 ms
52,488 KB
testcase_14 AC 30 ms
53,500 KB
testcase_15 AC 30 ms
53,224 KB
testcase_16 AC 30 ms
52,024 KB
testcase_17 MLE -
testcase_18 AC 36 ms
61,964 KB
testcase_19 AC 37 ms
62,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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