結果

問題 No.129 お年玉(2)
ユーザー takeya_okinotakeya_okino
提出日時 2017-06-16 11:12:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 671 ms / 5,000 ms
コード長 735 bytes
コンパイル時間 2,261 ms
コンパイル使用メモリ 74,232 KB
実行使用メモリ 47,348 KB
最終ジャッジ日時 2024-05-05 23:26:00
合計ジャッジ時間 23,975 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 199 ms
45,816 KB
testcase_01 AC 634 ms
46,908 KB
testcase_02 AC 115 ms
41,080 KB
testcase_03 AC 115 ms
41,108 KB
testcase_04 AC 116 ms
41,268 KB
testcase_05 AC 416 ms
46,636 KB
testcase_06 AC 540 ms
46,512 KB
testcase_07 AC 576 ms
47,072 KB
testcase_08 AC 474 ms
47,348 KB
testcase_09 AC 567 ms
47,200 KB
testcase_10 AC 572 ms
47,076 KB
testcase_11 AC 455 ms
46,584 KB
testcase_12 AC 560 ms
46,884 KB
testcase_13 AC 572 ms
47,116 KB
testcase_14 AC 561 ms
46,952 KB
testcase_15 AC 501 ms
47,240 KB
testcase_16 AC 526 ms
46,720 KB
testcase_17 AC 626 ms
47,012 KB
testcase_18 AC 571 ms
46,892 KB
testcase_19 AC 609 ms
46,956 KB
testcase_20 AC 582 ms
47,088 KB
testcase_21 AC 671 ms
47,120 KB
testcase_22 AC 492 ms
47,136 KB
testcase_23 AC 605 ms
46,904 KB
testcase_24 AC 589 ms
47,136 KB
testcase_25 AC 488 ms
46,636 KB
testcase_26 AC 478 ms
46,872 KB
testcase_27 AC 464 ms
46,476 KB
testcase_28 AC 664 ms
47,140 KB
testcase_29 AC 119 ms
41,308 KB
testcase_30 AC 107 ms
39,984 KB
testcase_31 AC 107 ms
40,020 KB
testcase_32 AC 114 ms
41,268 KB
testcase_33 AC 153 ms
42,560 KB
testcase_34 AC 136 ms
41,740 KB
testcase_35 AC 151 ms
42,556 KB
testcase_36 AC 174 ms
42,612 KB
testcase_37 AC 163 ms
43,080 KB
testcase_38 AC 258 ms
45,916 KB
testcase_39 AC 303 ms
46,616 KB
testcase_40 AC 457 ms
46,692 KB
testcase_41 AC 365 ms
46,812 KB
testcase_42 AC 273 ms
46,480 KB
testcase_43 AC 273 ms
46,168 KB
testcase_44 AC 654 ms
46,944 KB
testcase_45 AC 230 ms
45,360 KB
testcase_46 AC 299 ms
46,472 KB
testcase_47 AC 639 ms
46,996 KB
testcase_48 AC 487 ms
46,956 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