結果

問題 No.932 解法破綻!高橋君
ユーザー stngstng
提出日時 2022-08-15 13:11:36
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 125 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 82,668 KB
実行使用メモリ 66,224 KB
最終ジャッジ日時 2024-04-10 00:33:12
合計ジャッジ時間 1,748 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,112 KB
testcase_01 AC 33 ms
52,360 KB
testcase_02 AC 35 ms
51,964 KB
testcase_03 AC 34 ms
53,080 KB
testcase_04 AC 34 ms
52,196 KB
testcase_05 AC 37 ms
51,824 KB
testcase_06 AC 37 ms
52,212 KB
testcase_07 AC 36 ms
52,380 KB
testcase_08 AC 37 ms
52,348 KB
testcase_09 AC 37 ms
52,396 KB
testcase_10 AC 36 ms
51,692 KB
testcase_11 AC 37 ms
53,292 KB
testcase_12 AC 36 ms
51,824 KB
testcase_13 AC 35 ms
52,944 KB
testcase_14 AC 36 ms
52,876 KB
testcase_15 AC 36 ms
53,008 KB
testcase_16 AC 37 ms
52,620 KB
testcase_17 MLE -
testcase_18 AC 45 ms
61,272 KB
testcase_19 AC 43 ms
61,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input().split(",")
for i in range(len(s)):
    if s[i] != "AC":
        print("Failed...")
        exit()

print("Done!")
0