結果

問題 No.2772 Appearing Even Times
ユーザー 👑 p-adicp-adic
提出日時 2024-05-27 23:44:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 310 bytes
コンパイル時間 93 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 114,336 KB
最終ジャッジ日時 2024-05-28 05:50:40
合計ジャッジ時間 6,105 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
10,752 KB
testcase_01 AC 44 ms
10,752 KB
testcase_02 AC 91 ms
10,624 KB
testcase_03 AC 49 ms
10,752 KB
testcase_04 AC 49 ms
10,752 KB
testcase_05 AC 49 ms
10,624 KB
testcase_06 AC 56 ms
10,624 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 TLE -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

R=range
S=input()
L=len(S)
p=1024
D=[[0]*p for l in R(L)]
D[0][0]=1
P=998244353
for l in R(1,L):
	for s in R(p):
		for d in R(10):t=s^1<<d;D[l][t]=(D[l][t]+D[l-1][s])%P
a=sum(D[l][0]-D[l-1][1]for l in R(1,L))
t=0
for i in R(L):
	c=ord(S[i])-48
	for d in R(i<1,c):a+=D[L-1-i][t^1<<d]
	t^=1<<c
print((a+(t<1))%P)
0