結果

問題 No.1417 100の倍数かつ正整数(2)
ユーザー 👑 potato167potato167
提出日時 2022-02-17 01:09:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 91 ms / 3,000 ms
コード長 732 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 77,824 KB
最終ジャッジ日時 2024-06-29 07:23:55
合計ジャッジ時間 3,018 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,736 KB
testcase_01 AC 33 ms
52,096 KB
testcase_02 AC 47 ms
63,104 KB
testcase_03 AC 32 ms
52,224 KB
testcase_04 AC 32 ms
51,968 KB
testcase_05 AC 35 ms
52,096 KB
testcase_06 AC 34 ms
52,352 KB
testcase_07 AC 35 ms
52,096 KB
testcase_08 AC 36 ms
52,096 KB
testcase_09 AC 36 ms
51,712 KB
testcase_10 AC 36 ms
52,096 KB
testcase_11 AC 35 ms
51,840 KB
testcase_12 AC 40 ms
59,008 KB
testcase_13 AC 40 ms
59,136 KB
testcase_14 AC 43 ms
60,160 KB
testcase_15 AC 42 ms
61,184 KB
testcase_16 AC 48 ms
62,080 KB
testcase_17 AC 46 ms
62,080 KB
testcase_18 AC 48 ms
62,848 KB
testcase_19 AC 50 ms
62,336 KB
testcase_20 AC 45 ms
62,720 KB
testcase_21 AC 48 ms
62,848 KB
testcase_22 AC 50 ms
63,352 KB
testcase_23 AC 47 ms
63,488 KB
testcase_24 AC 47 ms
63,232 KB
testcase_25 AC 46 ms
63,104 KB
testcase_26 AC 47 ms
62,976 KB
testcase_27 AC 48 ms
63,872 KB
testcase_28 AC 44 ms
63,616 KB
testcase_29 AC 45 ms
62,848 KB
testcase_30 AC 61 ms
70,272 KB
testcase_31 AC 56 ms
67,200 KB
testcase_32 AC 79 ms
76,924 KB
testcase_33 AC 76 ms
77,056 KB
testcase_34 AC 91 ms
77,696 KB
testcase_35 AC 88 ms
77,696 KB
testcase_36 AC 91 ms
77,696 KB
testcase_37 AC 79 ms
77,608 KB
testcase_38 AC 74 ms
77,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S=input()
N=len(S)
dp=[[0 for i in range(9)] for j in range(N+1)]
MOD=10**9+7
q=[0,0,1,0,2,3,1,0,2,0]
A=0
B=0
J=0
for i in range(N):
	for k in range(ord(S[i])-ord('0')):
		a=A
		b=B
		if q[k]==3:
			if b!=2:
				b+=1
		else:
			a+=q[k]
			if a>2:
				a=2
		if k!=0 and J==0:
			dp[i+1][a+b*3]+=1
	if S[i]=='5':
		B=min(2,B+1)
	elif S[i]=='0':
		J=1
	else:
		A=min(A+q[ord(S[i])-ord('0')],2)
	if i==0:
		continue
	for j in range(9):
		dp[i][j]%=MOD
		if dp[i][j]==0:
			continue
		for k in range(1,10):
			a=j%3
			b=j//3
			if q[k]==3 and b!=2:
				b+=1
			elif q[k]!=3:
				a+=q[k]
				if a>2:
					a=2
			dp[i+1][a+b*3]+=dp[i][j]
	for j in range(9):
		dp[i+1][q[j+1]]+=1
if A==2 and B==2 and J==0:
	dp[N][8]+=1
print(dp[N][8]%MOD)
0