結果

問題 No.2772 Appearing Even Times
ユーザー 👑 p-adicp-adic
提出日時 2024-05-27 23:36:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,538 ms / 4,000 ms
コード長 310 bytes
コンパイル時間 357 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 157,160 KB
最終ジャッジ日時 2024-12-20 20:41:51
合計ジャッジ時間 19,170 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
60,800 KB
testcase_01 AC 56 ms
60,928 KB
testcase_02 AC 57 ms
61,440 KB
testcase_03 AC 57 ms
61,184 KB
testcase_04 AC 55 ms
61,184 KB
testcase_05 AC 56 ms
61,696 KB
testcase_06 AC 57 ms
61,056 KB
testcase_07 AC 42 ms
51,968 KB
testcase_08 AC 1,430 ms
156,928 KB
testcase_09 AC 1,436 ms
157,056 KB
testcase_10 AC 48 ms
59,264 KB
testcase_11 AC 53 ms
60,928 KB
testcase_12 AC 1,411 ms
156,976 KB
testcase_13 AC 1,437 ms
156,792 KB
testcase_14 AC 1,441 ms
157,152 KB
testcase_15 AC 1,538 ms
156,524 KB
testcase_16 AC 1,432 ms
157,160 KB
testcase_17 AC 1,451 ms
156,928 KB
testcase_18 AC 1,440 ms
157,040 KB
testcase_19 AC 1,436 ms
156,800 KB
testcase_20 AC 1,434 ms
155,632 KB
testcase_21 AC 1,431 ms
156,044 KB
権限があれば一括ダウンロードができます

ソースコード

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