結果

問題 No.129 お年玉(2)
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-20 21:59:44
言語 Java
(openjdk 23)
結果
AC  
実行時間 431 ms / 5,000 ms
コード長 939 bytes
コンパイル時間 1,738 ms
コンパイル使用メモリ 76,972 KB
実行使用メモリ 232,888 KB
最終ジャッジ日時 2024-11-27 23:45:43
合計ジャッジ時間 13,848 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
51,972 KB
testcase_01 AC 100 ms
40,196 KB
testcase_02 AC 108 ms
41,048 KB
testcase_03 AC 102 ms
40,112 KB
testcase_04 AC 96 ms
40,316 KB
testcase_05 AC 202 ms
99,468 KB
testcase_06 AC 318 ms
179,336 KB
testcase_07 AC 385 ms
220,516 KB
testcase_08 AC 175 ms
78,116 KB
testcase_09 AC 317 ms
177,620 KB
testcase_10 AC 383 ms
220,220 KB
testcase_11 AC 326 ms
178,988 KB
testcase_12 AC 185 ms
75,620 KB
testcase_13 AC 160 ms
65,784 KB
testcase_14 AC 341 ms
179,040 KB
testcase_15 AC 303 ms
179,300 KB
testcase_16 AC 330 ms
178,560 KB
testcase_17 AC 310 ms
177,908 KB
testcase_18 AC 323 ms
178,884 KB
testcase_19 AC 242 ms
120,988 KB
testcase_20 AC 404 ms
222,532 KB
testcase_21 AC 399 ms
224,148 KB
testcase_22 AC 327 ms
178,240 KB
testcase_23 AC 383 ms
222,860 KB
testcase_24 AC 178 ms
75,944 KB
testcase_25 AC 298 ms
178,884 KB
testcase_26 AC 241 ms
121,572 KB
testcase_27 AC 231 ms
122,096 KB
testcase_28 AC 431 ms
232,888 KB
testcase_29 AC 99 ms
39,872 KB
testcase_30 AC 105 ms
41,100 KB
testcase_31 AC 106 ms
41,240 KB
testcase_32 AC 108 ms
41,160 KB
testcase_33 AC 104 ms
41,040 KB
testcase_34 AC 112 ms
41,936 KB
testcase_35 AC 108 ms
41,440 KB
testcase_36 AC 116 ms
42,288 KB
testcase_37 AC 115 ms
41,848 KB
testcase_38 AC 153 ms
67,284 KB
testcase_39 AC 173 ms
76,408 KB
testcase_40 AC 242 ms
121,728 KB
testcase_41 AC 199 ms
100,560 KB
testcase_42 AC 156 ms
66,300 KB
testcase_43 AC 140 ms
55,732 KB
testcase_44 AC 262 ms
135,036 KB
testcase_45 AC 132 ms
55,256 KB
testcase_46 AC 149 ms
55,220 KB
testcase_47 AC 380 ms
223,716 KB
testcase_48 AC 194 ms
100,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner koko = new Scanner(System.in);
        long n = koko.nextLong();
        int m = koko.nextInt();
        long nama = n%1000;
        long nmai = (n-nama)/1000;
        long amari = nmai%m;
        if(amari==0){
            System.out.println(1);
        }else{
            long[][] judge = new long[(int)(m-amari+1)][(int)(amari+1)];
            for(int i=0; i<amari+1; i++){
                judge[0][i]=1;
            }
            for(int i=0; i<m-amari+1; i++){
                judge[i][0]=1;
            }
            for(int i=1; i<m-amari+1; i++){
                for(int j=1; j<amari+1; j++){
                    judge[i][j]= (judge[i-1][j]+judge[i][j-1])%1000000000;
                }
            }
            long ans = judge[(int)(m-amari)][(int)amari];
            System.out.println(ans);
        }
    }
}
0