結果
問題 | No.41 貯金箱の溜息(EASY) |
ユーザー | ayaoni |
提出日時 | 2020-12-04 17:38:23 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 97 ms / 5,000 ms |
コード長 | 899 bytes |
コンパイル時間 | 372 ms |
コンパイル使用メモリ | 81,920 KB |
実行使用メモリ | 85,504 KB |
最終ジャッジ日時 | 2024-09-15 04:22:58 |
合計ジャッジ時間 | 1,265 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 96 ms
85,504 KB |
testcase_01 | AC | 97 ms
85,504 KB |
ソースコード
import sys from itertools import accumulate sys.setrecursionlimit(10**7) def I(): return int(sys.stdin.readline().rstrip()) def MI(): return map(int,sys.stdin.readline().rstrip().split()) def LI(): return list(map(int,sys.stdin.readline().rstrip().split())) def LI2(): return list(map(int,sys.stdin.readline().rstrip())) def S(): return sys.stdin.readline().rstrip() def LS(): return list(sys.stdin.readline().rstrip().split()) def LS2(): return list(sys.stdin.readline().rstrip()) mod = 10**9+9 X = (10**10)//111111 dp = [[0]*(X+1) for i in range(10)] # dp[i][j] = (1*a1+2*a2+…+i*ai == j の解の個数) dp[0][0] = 1 for i in range(1,10): for j in range(X+1): a = dp[i-1][j] if j >= i: a += dp[i][j-i] a %= mod dp[i][j] = a A = dp[-1] SA = list(accumulate(A)) T = I() for _ in range(T): M = I() M //= 111111 print(SA[M] % mod)