結果

問題 No.1694 ZerOne
ユーザー tamatotamato
提出日時 2021-10-01 22:22:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 711 ms / 2,000 ms
コード長 844 bytes
コンパイル時間 309 ms
コンパイル使用メモリ 82,112 KB
実行使用メモリ 76,512 KB
最終ジャッジ日時 2024-07-19 12:07:20
合計ジャッジ時間 8,110 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
59,648 KB
testcase_01 AC 47 ms
58,624 KB
testcase_02 AC 46 ms
59,776 KB
testcase_03 AC 274 ms
76,512 KB
testcase_04 AC 58 ms
64,512 KB
testcase_05 AC 97 ms
68,352 KB
testcase_06 AC 43 ms
58,496 KB
testcase_07 AC 82 ms
67,840 KB
testcase_08 AC 118 ms
69,504 KB
testcase_09 AC 279 ms
76,308 KB
testcase_10 AC 75 ms
66,432 KB
testcase_11 AC 45 ms
59,136 KB
testcase_12 AC 46 ms
59,392 KB
testcase_13 AC 139 ms
70,144 KB
testcase_14 AC 267 ms
76,140 KB
testcase_15 AC 97 ms
68,096 KB
testcase_16 AC 94 ms
68,096 KB
testcase_17 AC 59 ms
65,152 KB
testcase_18 AC 37 ms
51,840 KB
testcase_19 AC 39 ms
52,224 KB
testcase_20 AC 38 ms
52,352 KB
testcase_21 AC 711 ms
76,160 KB
testcase_22 AC 69 ms
66,304 KB
testcase_23 AC 696 ms
76,024 KB
testcase_24 AC 380 ms
76,260 KB
testcase_25 AC 384 ms
76,152 KB
testcase_26 AC 78 ms
66,560 KB
testcase_27 AC 593 ms
76,324 KB
testcase_28 AC 217 ms
73,472 KB
testcase_29 AC 225 ms
73,472 KB
testcase_30 AC 263 ms
76,416 KB
testcase_31 AC 340 ms
76,204 KB
testcase_32 AC 373 ms
76,032 KB
testcase_33 AC 377 ms
76,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

    S = input().rstrip('\n')
    N = len(S)
    M = 225
    X = []
    for i in range(N):
        if S[i] == "1":
            X.append(i+1)

    dp = [[0] * (M * 2 + 1) for _ in range(N+1)]
    dp[0][0] = 1
    for x in X:
        dp_new = [[0] * (M * 2 + 1) for _ in range(N + 1)]
        for j_prev in range(N+1):
            for j_new in range(j_prev + 1, N+1):
                for balance in range(-M, M+1):
                    balance_new = balance + (j_new - x)
                    if -M <= balance_new <= M:
                        dp_new[j_new][balance_new] = dp_new[j_new][balance_new] + dp[j_prev][balance]
        dp = dp_new
    ans = 0
    for j in range(N+1):
        ans += dp[j][0]
    print(ans)


if __name__ == '__main__':
    main()
0