結果

問題 No.129 お年玉(2)
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-20 21:52:32
言語 Java21
(openjdk 21)
結果
MLE  
実行時間 -
コード長 843 bytes
コンパイル時間 1,926 ms
コンパイル使用メモリ 77,356 KB
実行使用メモリ 745,320 KB
最終ジャッジ日時 2024-07-04 18:49:52
合計ジャッジ時間 35,145 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 210 ms
80,228 KB
testcase_01 MLE -
testcase_02 AC 127 ms
46,164 KB
testcase_03 AC 111 ms
43,516 KB
testcase_04 AC 124 ms
41,164 KB
testcase_05 AC 646 ms
454,228 KB
testcase_06 MLE -
testcase_07 MLE -
testcase_08 AC 719 ms
467,088 KB
testcase_09 MLE -
testcase_10 MLE -
testcase_11 AC 689 ms
449,376 KB
testcase_12 MLE -
testcase_13 MLE -
testcase_14 MLE -
testcase_15 AC 738 ms
484,088 KB
testcase_16 MLE -
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
testcase_20 MLE -
testcase_21 MLE -
testcase_22 AC 718 ms
470,644 KB
testcase_23 MLE -
testcase_24 MLE -
testcase_25 AC 697 ms
451,160 KB
testcase_26 AC 713 ms
461,048 KB
testcase_27 AC 690 ms
448,028 KB
testcase_28 MLE -
testcase_29 AC 125 ms
43,184 KB
testcase_30 AC 125 ms
41,200 KB
testcase_31 AC 128 ms
41,328 KB
testcase_32 AC 128 ms
41,512 KB
testcase_33 AC 123 ms
41,492 KB
testcase_34 AC 141 ms
43,032 KB
testcase_35 AC 142 ms
48,328 KB
testcase_36 AC 148 ms
47,888 KB
testcase_37 AC 136 ms
47,464 KB
testcase_38 AC 263 ms
125,328 KB
testcase_39 AC 303 ms
179,032 KB
testcase_40 AC 665 ms
448,324 KB
testcase_41 AC 474 ms
352,780 KB
testcase_42 AC 258 ms
137,040 KB
testcase_43 AC 260 ms
134,824 KB
testcase_44 MLE -
testcase_45 AC 219 ms
102,028 KB
testcase_46 AC 368 ms
223,320 KB
testcase_47 MLE -
testcase_48 AC 754 ms
490,028 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[m+1][m+1];
            for(int i=0; i<m+1; i++){
                judge[0][i]=1;
                judge[i][0]=1;
            }
            for(int i=1; i<m+1; i++){
                for(int j=1; j<m+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