結果

問題 No.129 お年玉(2)
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-20 21:59:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 430 ms / 5,000 ms
コード長 939 bytes
コンパイル時間 2,350 ms
コンパイル使用メモリ 77,056 KB
実行使用メモリ 232,484 KB
最終ジャッジ日時 2024-05-05 22:23:03
合計ジャッジ時間 14,119 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
52,168 KB
testcase_01 AC 100 ms
40,288 KB
testcase_02 AC 107 ms
41,020 KB
testcase_03 AC 109 ms
41,404 KB
testcase_04 AC 111 ms
41,320 KB
testcase_05 AC 203 ms
100,492 KB
testcase_06 AC 319 ms
178,540 KB
testcase_07 AC 382 ms
220,308 KB
testcase_08 AC 178 ms
78,540 KB
testcase_09 AC 314 ms
178,336 KB
testcase_10 AC 371 ms
220,416 KB
testcase_11 AC 301 ms
179,212 KB
testcase_12 AC 167 ms
75,520 KB
testcase_13 AC 142 ms
65,860 KB
testcase_14 AC 316 ms
178,416 KB
testcase_15 AC 304 ms
179,048 KB
testcase_16 AC 312 ms
178,516 KB
testcase_17 AC 313 ms
178,112 KB
testcase_18 AC 322 ms
178,972 KB
testcase_19 AC 242 ms
121,404 KB
testcase_20 AC 384 ms
223,088 KB
testcase_21 AC 390 ms
224,336 KB
testcase_22 AC 284 ms
178,160 KB
testcase_23 AC 368 ms
222,704 KB
testcase_24 AC 181 ms
75,828 KB
testcase_25 AC 299 ms
179,788 KB
testcase_26 AC 242 ms
121,568 KB
testcase_27 AC 244 ms
122,636 KB
testcase_28 AC 430 ms
232,484 KB
testcase_29 AC 103 ms
40,096 KB
testcase_30 AC 112 ms
40,976 KB
testcase_31 AC 102 ms
40,032 KB
testcase_32 AC 109 ms
41,160 KB
testcase_33 AC 107 ms
41,016 KB
testcase_34 AC 100 ms
40,380 KB
testcase_35 AC 113 ms
41,412 KB
testcase_36 AC 122 ms
42,248 KB
testcase_37 AC 116 ms
41,284 KB
testcase_38 AC 155 ms
66,804 KB
testcase_39 AC 180 ms
76,212 KB
testcase_40 AC 257 ms
121,972 KB
testcase_41 AC 215 ms
101,612 KB
testcase_42 AC 156 ms
66,936 KB
testcase_43 AC 142 ms
56,044 KB
testcase_44 AC 262 ms
135,772 KB
testcase_45 AC 138 ms
55,520 KB
testcase_46 AC 140 ms
55,988 KB
testcase_47 AC 375 ms
224,456 KB
testcase_48 AC 208 ms
101,644 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