結果

問題 No.129 お年玉(2)
ユーザー kenji_shioyakenji_shioya
提出日時 2016-06-20 17:09:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 249 ms / 5,000 ms
コード長 612 bytes
コンパイル時間 6,119 ms
コンパイル使用メモリ 75,184 KB
実行使用メモリ 45,976 KB
最終ジャッジ日時 2024-05-05 23:09:24
合計ジャッジ時間 12,286 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,760 KB
testcase_01 AC 249 ms
45,692 KB
testcase_02 AC 112 ms
41,244 KB
testcase_03 AC 109 ms
41,024 KB
testcase_04 AC 112 ms
41,284 KB
testcase_05 AC 182 ms
45,392 KB
testcase_06 AC 176 ms
45,720 KB
testcase_07 AC 208 ms
45,792 KB
testcase_08 AC 207 ms
45,536 KB
testcase_09 AC 156 ms
45,268 KB
testcase_10 AC 218 ms
45,760 KB
testcase_11 AC 189 ms
45,560 KB
testcase_12 AC 121 ms
41,412 KB
testcase_13 AC 125 ms
41,780 KB
testcase_14 AC 175 ms
45,636 KB
testcase_15 AC 183 ms
45,632 KB
testcase_16 AC 187 ms
45,728 KB
testcase_17 AC 167 ms
45,356 KB
testcase_18 AC 210 ms
45,520 KB
testcase_19 AC 228 ms
45,664 KB
testcase_20 AC 199 ms
45,596 KB
testcase_21 AC 173 ms
45,204 KB
testcase_22 AC 198 ms
45,976 KB
testcase_23 AC 214 ms
45,504 KB
testcase_24 AC 235 ms
45,532 KB
testcase_25 AC 187 ms
45,688 KB
testcase_26 AC 190 ms
45,368 KB
testcase_27 AC 202 ms
45,580 KB
testcase_28 AC 194 ms
45,636 KB
testcase_29 AC 101 ms
40,464 KB
testcase_30 AC 109 ms
41,120 KB
testcase_31 AC 103 ms
40,016 KB
testcase_32 AC 114 ms
41,476 KB
testcase_33 AC 112 ms
41,168 KB
testcase_34 AC 114 ms
41,316 KB
testcase_35 AC 110 ms
41,168 KB
testcase_36 AC 105 ms
40,464 KB
testcase_37 AC 113 ms
41,396 KB
testcase_38 AC 143 ms
42,932 KB
testcase_39 AC 152 ms
42,984 KB
testcase_40 AC 161 ms
44,484 KB
testcase_41 AC 166 ms
45,264 KB
testcase_42 AC 152 ms
44,800 KB
testcase_43 AC 118 ms
40,668 KB
testcase_44 AC 245 ms
45,516 KB
testcase_45 AC 155 ms
43,200 KB
testcase_46 AC 131 ms
41,652 KB
testcase_47 AC 232 ms
45,464 KB
testcase_48 AC 212 ms
45,844 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