結果
問題 | No.41 貯金箱の溜息(EASY) |
ユーザー | roiti46 |
提出日時 | 2015-02-19 19:08:20 |
言語 | Python2 (2.7.18) |
結果 |
AC
|
実行時間 | 235 ms / 5,000 ms |
コード長 | 228 bytes |
コンパイル時間 | 123 ms |
コンパイル使用メモリ | 6,940 KB |
実行使用メモリ | 9,472 KB |
最終ジャッジ日時 | 2024-06-23 21:21:46 |
合計ジャッジ時間 | 1,155 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 233 ms
9,344 KB |
testcase_01 | AC | 235 ms
9,472 KB |
ソースコード
mod = 10**9+9 mx = 100000 dp = [1]*mx for i in xrange(1,10): for j in xrange(i,mx): dp[j] = (dp[j] + dp[j-i])%mod T = int(raw_input()) for loop in xrange(T): M = int(raw_input()) M /= 111111 print dp[M]