結果

問題 No.129 お年玉(2)
ユーザー kenji_shioyakenji_shioya
提出日時 2016-06-20 17:09:49
言語 Java
(openjdk 23)
結果
AC  
実行時間 292 ms / 5,000 ms
コード長 612 bytes
コンパイル時間 4,184 ms
コンパイル使用メモリ 75,036 KB
実行使用メモリ 45,972 KB
最終ジャッジ日時 2024-11-28 00:35:13
合計ジャッジ時間 13,933 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
40,680 KB
testcase_01 AC 292 ms
45,624 KB
testcase_02 AC 128 ms
41,180 KB
testcase_03 AC 130 ms
41,276 KB
testcase_04 AC 130 ms
41,316 KB
testcase_05 AC 224 ms
45,972 KB
testcase_06 AC 195 ms
45,124 KB
testcase_07 AC 229 ms
45,848 KB
testcase_08 AC 231 ms
45,396 KB
testcase_09 AC 203 ms
45,460 KB
testcase_10 AC 235 ms
45,512 KB
testcase_11 AC 213 ms
45,396 KB
testcase_12 AC 145 ms
41,740 KB
testcase_13 AC 145 ms
41,440 KB
testcase_14 AC 205 ms
45,676 KB
testcase_15 AC 200 ms
45,680 KB
testcase_16 AC 220 ms
45,556 KB
testcase_17 AC 203 ms
45,116 KB
testcase_18 AC 240 ms
45,592 KB
testcase_19 AC 258 ms
45,696 KB
testcase_20 AC 208 ms
45,392 KB
testcase_21 AC 196 ms
44,856 KB
testcase_22 AC 218 ms
45,644 KB
testcase_23 AC 244 ms
45,400 KB
testcase_24 AC 268 ms
45,664 KB
testcase_25 AC 207 ms
45,744 KB
testcase_26 AC 231 ms
45,820 KB
testcase_27 AC 227 ms
45,820 KB
testcase_28 AC 217 ms
45,408 KB
testcase_29 AC 118 ms
40,064 KB
testcase_30 AC 131 ms
41,460 KB
testcase_31 AC 119 ms
40,344 KB
testcase_32 AC 129 ms
41,000 KB
testcase_33 AC 130 ms
40,888 KB
testcase_34 AC 130 ms
41,576 KB
testcase_35 AC 132 ms
41,420 KB
testcase_36 AC 138 ms
41,284 KB
testcase_37 AC 135 ms
41,420 KB
testcase_38 AC 172 ms
43,104 KB
testcase_39 AC 160 ms
42,716 KB
testcase_40 AC 171 ms
45,304 KB
testcase_41 AC 205 ms
45,252 KB
testcase_42 AC 176 ms
44,720 KB
testcase_43 AC 155 ms
41,740 KB
testcase_44 AC 280 ms
45,640 KB
testcase_45 AC 167 ms
43,220 KB
testcase_46 AC 151 ms
41,420 KB
testcase_47 AC 273 ms
45,496 KB
testcase_48 AC 231 ms
45,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.BigInteger;

public class Exercise100{
  public static void main (String[] args){

    Scanner sc = new Scanner(System.in);

    long n = sc.nextLong();
    long m = sc.nextLong();

    long mod = 1000000000;

    if((n / 1000) % m == 0){
      System.out.println(1);
    }else{
      long bills = ((n / 1000) % m);
      BigInteger a = BigInteger.ONE;
      for(long i = 0; i < bills; i++){
        a = a.multiply(BigInteger.valueOf(m - i));
        a = a.divide(BigInteger.valueOf(i + 1));
      }
      System.out.println(a.remainder(BigInteger.valueOf(mod)));
    }
  }
}
0