結果
問題 | No.41 貯金箱の溜息(EASY) |
ユーザー | scache |
提出日時 | 2014-11-30 22:47:10 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 373 ms / 5,000 ms |
コード長 | 636 bytes |
コンパイル時間 | 3,393 ms |
コンパイル使用メモリ | 79,056 KB |
実行使用メモリ | 48,360 KB |
最終ジャッジ日時 | 2024-06-11 07:32:00 |
合計ジャッジ時間 | 5,022 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 350 ms
47,868 KB |
testcase_01 | AC | 373 ms
48,360 KB |
ソースコード
import java.util.Arrays; import java.util.Scanner; public class Main41 { public static void main(String[] args) { Main41 p = new Main41(); } public Main41() { solve(); } private final long MOD = (long) (1.0e9+9); public void solve() { long[] dp = new long[(int) ((1.0e10+111111)/111111)]; Arrays.fill(dp, 1); for(int i=1;i<=9;i++){ for(int j=0;j<dp.length-i;j++){ dp[i+j] += dp[j]; dp[i+j] %= MOD; } } Scanner sc = new Scanner(System.in); int n =sc.nextInt(); for(int i=0;i<n;i++) System.out.println(dp[(int) (sc.nextLong()/111111)]); } }