結果

問題 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
コンパイル時間 204 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 115,456 KB
最終ジャッジ日時 2024-12-20 20:41:30
合計ジャッジ時間 61,791 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
115,456 KB
testcase_01 AC 58 ms
15,872 KB
testcase_02 AC 101 ms
16,256 KB
testcase_03 AC 55 ms
114,944 KB
testcase_04 AC 55 ms
16,000 KB
testcase_05 AC 54 ms
114,688 KB
testcase_06 AC 59 ms
16,000 KB
testcase_07 AC 33 ms
115,072 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 34 ms
16,000 KB
testcase_11 AC 55 ms
114,816 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
権限があれば一括ダウンロードができます

ソースコード

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