結果

問題 No.932 解法破綻!高橋君
ユーザー neterukunneterukun
提出日時 2019-11-29 21:41:50
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 125 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 68,172 KB
最終ジャッジ日時 2024-04-30 23:08:28
合計ジャッジ時間 1,466 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,188 KB
testcase_01 AC 33 ms
51,900 KB
testcase_02 AC 33 ms
52,676 KB
testcase_03 AC 32 ms
52,544 KB
testcase_04 AC 33 ms
52,668 KB
testcase_05 AC 34 ms
53,480 KB
testcase_06 AC 33 ms
52,568 KB
testcase_07 AC 33 ms
52,360 KB
testcase_08 AC 34 ms
51,688 KB
testcase_09 AC 31 ms
53,080 KB
testcase_10 AC 31 ms
52,392 KB
testcase_11 AC 30 ms
52,972 KB
testcase_12 AC 32 ms
53,216 KB
testcase_13 AC 34 ms
52,200 KB
testcase_14 AC 31 ms
53,028 KB
testcase_15 AC 32 ms
53,308 KB
testcase_16 AC 33 ms
53,480 KB
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

a = input().split(",")
n = len(a)

ans = "Done!"
for i in range(n):
    if a[i] != "AC":
        ans = "Failed..."
print(ans)
0