結果

問題 No.1694 ZerOne
ユーザー vwxyzvwxyz
提出日時 2023-04-01 02:02:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 522 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,064 KB
実行使用メモリ 68,040 KB
最終ジャッジ日時 2024-09-23 03:50:17
合計ジャッジ時間 3,006 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,692 KB
testcase_01 AC 38 ms
53,232 KB
testcase_02 AC 36 ms
53,228 KB
testcase_03 AC 55 ms
65,588 KB
testcase_04 AC 37 ms
52,916 KB
testcase_05 AC 48 ms
62,604 KB
testcase_06 AC 37 ms
53,104 KB
testcase_07 AC 47 ms
61,908 KB
testcase_08 AC 50 ms
63,120 KB
testcase_09 AC 56 ms
65,316 KB
testcase_10 AC 45 ms
61,184 KB
testcase_11 AC 38 ms
53,032 KB
testcase_12 AC 37 ms
52,320 KB
testcase_13 AC 50 ms
64,696 KB
testcase_14 AC 53 ms
65,004 KB
testcase_15 AC 50 ms
62,940 KB
testcase_16 AC 49 ms
61,720 KB
testcase_17 AC 39 ms
52,328 KB
testcase_18 AC 37 ms
52,776 KB
testcase_19 AC 37 ms
52,704 KB
testcase_20 AC 40 ms
58,372 KB
testcase_21 AC 40 ms
58,332 KB
testcase_22 AC 46 ms
62,028 KB
testcase_23 AC 48 ms
62,384 KB
testcase_24 AC 60 ms
66,816 KB
testcase_25 AC 61 ms
68,040 KB
testcase_26 AC 46 ms
61,228 KB
testcase_27 AC 49 ms
63,728 KB
testcase_28 AC 42 ms
57,980 KB
testcase_29 AC 59 ms
66,816 KB
testcase_30 AC 56 ms
65,112 KB
testcase_31 AC 58 ms
65,972 KB
testcase_32 AC 59 ms
67,168 KB
testcase_33 AC 60 ms
67,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline=sys.stdin.readline

S=readline().rstrip()
N=len(S)
cnt0=S.count("0")
cnt1=S.count("1")
inve=sum(1 for i in range(N) for j in range(i+1,N) if S[i]>S[j])
dp=[[[0]*(inve+1) for c1 in range(cnt1+1)] for c0 in range(cnt0+1)]
dp[0][0][0]=1
for c0 in range(cnt0+1):
    for c1 in range(cnt1+1):
        for i in range(inve+1):
            if c0 and 0<=i-c1:
                dp[c0][c1][i]+=dp[c0-1][c1][i-c1]
            if c1:
                dp[c0][c1][i]+=dp[c0][c1-1][i]
ans=dp[cnt0][cnt1][inve]
print(ans)
0