結果

問題 No.2541 Divide 01 String
ユーザー ntudantuda
提出日時 2023-11-25 00:21:11
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 288 bytes
コンパイル時間 883 ms
コンパイル使用メモリ 82,332 KB
実行使用メモリ 85,808 KB
最終ジャッジ日時 2024-09-26 09:50:26
合計ジャッジ時間 3,749 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 36 ms
51,960 KB
testcase_02 AC 37 ms
51,968 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 38 ms
52,148 KB
testcase_14 AC 37 ms
51,840 KB
testcase_15 AC 37 ms
51,968 KB
testcase_16 AC 36 ms
51,840 KB
testcase_17 AC 37 ms
51,968 KB
testcase_18 AC 47 ms
64,000 KB
testcase_19 AC 48 ms
64,256 KB
testcase_20 AC 47 ms
64,384 KB
testcase_21 AC 46 ms
62,208 KB
testcase_22 AC 47 ms
62,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = input()
ans = 0
f = 0
for s in list(S):
    if f == 0:
        if s == "1":
            f = 1
            cnt = 1
            ans = 1
    elif f == 1:
        if s == "0":
            cnt += 1
        else:
            ans *= (cnt + 1)
            cnt = 1
print(ans)
0