結果

問題 No.1694 ZerOne
ユーザー 👑 rin204rin204
提出日時 2023-01-24 16:12:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 101 ms / 2,000 ms
コード長 449 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 80,148 KB
最終ジャッジ日時 2024-06-26 04:15:59
合計ジャッジ時間 3,644 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 38 ms
51,712 KB
testcase_02 AC 37 ms
52,352 KB
testcase_03 AC 79 ms
76,832 KB
testcase_04 AC 42 ms
58,880 KB
testcase_05 AC 51 ms
64,256 KB
testcase_06 AC 37 ms
51,584 KB
testcase_07 AC 48 ms
62,208 KB
testcase_08 AC 56 ms
66,048 KB
testcase_09 AC 78 ms
76,544 KB
testcase_10 AC 49 ms
62,976 KB
testcase_11 AC 38 ms
51,584 KB
testcase_12 AC 37 ms
52,352 KB
testcase_13 AC 54 ms
68,096 KB
testcase_14 AC 76 ms
76,416 KB
testcase_15 AC 50 ms
64,512 KB
testcase_16 AC 49 ms
63,360 KB
testcase_17 AC 43 ms
59,264 KB
testcase_18 AC 36 ms
52,096 KB
testcase_19 AC 37 ms
52,096 KB
testcase_20 AC 101 ms
80,000 KB
testcase_21 AC 101 ms
80,148 KB
testcase_22 AC 98 ms
79,616 KB
testcase_23 AC 101 ms
80,104 KB
testcase_24 AC 100 ms
80,000 KB
testcase_25 AC 100 ms
79,944 KB
testcase_26 AC 95 ms
79,616 KB
testcase_27 AC 93 ms
79,376 KB
testcase_28 AC 72 ms
76,672 KB
testcase_29 AC 73 ms
76,928 KB
testcase_30 AC 79 ms
77,056 KB
testcase_31 AC 93 ms
79,332 KB
testcase_32 AC 87 ms
78,848 KB
testcase_33 AC 91 ms
79,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
n = len(S)
dp = [[0] * (n * n) for _ in range(1)]
dp[0][0] = 1
for t in range(1, n + 1):
    ndp = [[0] * (n * n) for _ in range(t + 1)]
    for i in range(t):
        for j in range(n * n):
            if dp[i][j] == 0:
                continue
            ndp[i + 1][j] += dp[i][j]
            ndp[i][j + i] += dp[i][j]
    dp = ndp
o = 0
inv = 0
for s in S:
    if s == '1':
        o += 1
    else:
        inv += o
print(dp[o][inv])
0