結果

問題 No.129 お年玉(2)
ユーザー takeya_okinotakeya_okino
提出日時 2017-06-16 11:12:47
言語 Java
(openjdk 23)
結果
AC  
実行時間 767 ms / 5,000 ms
コード長 735 bytes
コンパイル時間 1,801 ms
コンパイル使用メモリ 74,644 KB
実行使用メモリ 47,404 KB
最終ジャッジ日時 2024-11-28 00:53:38
合計ジャッジ時間 24,491 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 197 ms
45,596 KB
testcase_01 AC 630 ms
47,404 KB
testcase_02 AC 107 ms
40,196 KB
testcase_03 AC 109 ms
40,960 KB
testcase_04 AC 101 ms
40,220 KB
testcase_05 AC 413 ms
46,828 KB
testcase_06 AC 532 ms
46,996 KB
testcase_07 AC 576 ms
47,344 KB
testcase_08 AC 467 ms
46,812 KB
testcase_09 AC 581 ms
47,060 KB
testcase_10 AC 562 ms
47,328 KB
testcase_11 AC 466 ms
46,852 KB
testcase_12 AC 539 ms
47,312 KB
testcase_13 AC 576 ms
47,228 KB
testcase_14 AC 552 ms
47,324 KB
testcase_15 AC 466 ms
47,336 KB
testcase_16 AC 556 ms
47,268 KB
testcase_17 AC 588 ms
47,088 KB
testcase_18 AC 584 ms
47,096 KB
testcase_19 AC 619 ms
47,072 KB
testcase_20 AC 629 ms
47,128 KB
testcase_21 AC 730 ms
47,192 KB
testcase_22 AC 543 ms
47,056 KB
testcase_23 AC 684 ms
47,312 KB
testcase_24 AC 671 ms
47,184 KB
testcase_25 AC 524 ms
47,060 KB
testcase_26 AC 540 ms
46,956 KB
testcase_27 AC 545 ms
46,724 KB
testcase_28 AC 763 ms
46,964 KB
testcase_29 AC 130 ms
41,376 KB
testcase_30 AC 128 ms
41,144 KB
testcase_31 AC 132 ms
41,132 KB
testcase_32 AC 136 ms
41,360 KB
testcase_33 AC 179 ms
42,796 KB
testcase_34 AC 155 ms
41,484 KB
testcase_35 AC 172 ms
42,396 KB
testcase_36 AC 174 ms
43,036 KB
testcase_37 AC 178 ms
43,356 KB
testcase_38 AC 291 ms
46,480 KB
testcase_39 AC 345 ms
46,628 KB
testcase_40 AC 538 ms
46,756 KB
testcase_41 AC 440 ms
46,788 KB
testcase_42 AC 309 ms
46,312 KB
testcase_43 AC 299 ms
46,276 KB
testcase_44 AC 767 ms
47,060 KB
testcase_45 AC 258 ms
45,792 KB
testcase_46 AC 338 ms
46,892 KB
testcase_47 AC 741 ms
47,188 KB
testcase_48 AC 565 ms
46,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    long N = sc.nextLong();
    long M = sc.nextLong();
    N /= 1000;
    long r = N % M;
    BigInteger p1 = new BigInteger("1");
    for(int i = 2; i <= M; i++) {
      BigInteger p = new BigInteger(String.valueOf(i));
      p1 = p1.multiply(p);
    }
    for(int i = 2; i <= r; i++) {
      BigInteger p = new BigInteger(String.valueOf(i));
      p1 = p1.divide(p);
    }
    for(int i = 2; i <= M - r; i++) {
      BigInteger p = new BigInteger(String.valueOf(i));
      p1 = p1.divide(p);
    }
    p1 = p1.mod(new BigInteger("1000000000"));
    System.out.println(p1);
  }
}
0