結果

問題 No.129 お年玉(2)
ユーザー kou6839kou6839
提出日時 2015-01-21 23:51:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 330 ms / 5,000 ms
コード長 645 bytes
コンパイル時間 4,971 ms
コンパイル使用メモリ 76,760 KB
実行使用メモリ 47,460 KB
最終ジャッジ日時 2024-11-27 23:35:20
合計ジャッジ時間 15,922 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 170 ms
42,712 KB
testcase_01 AC 330 ms
47,320 KB
testcase_02 AC 139 ms
41,420 KB
testcase_03 AC 136 ms
41,484 KB
testcase_04 AC 135 ms
41,588 KB
testcase_05 AC 259 ms
46,200 KB
testcase_06 AC 228 ms
45,736 KB
testcase_07 AC 280 ms
46,040 KB
testcase_08 AC 271 ms
46,000 KB
testcase_09 AC 217 ms
45,248 KB
testcase_10 AC 292 ms
46,236 KB
testcase_11 AC 245 ms
46,048 KB
testcase_12 AC 153 ms
41,960 KB
testcase_13 AC 152 ms
42,056 KB
testcase_14 AC 239 ms
46,048 KB
testcase_15 AC 227 ms
45,852 KB
testcase_16 AC 247 ms
45,988 KB
testcase_17 AC 216 ms
45,584 KB
testcase_18 AC 266 ms
45,856 KB
testcase_19 AC 296 ms
46,976 KB
testcase_20 AC 246 ms
46,184 KB
testcase_21 AC 224 ms
45,540 KB
testcase_22 AC 254 ms
46,016 KB
testcase_23 AC 281 ms
45,912 KB
testcase_24 AC 306 ms
47,320 KB
testcase_25 AC 231 ms
46,300 KB
testcase_26 AC 266 ms
46,196 KB
testcase_27 AC 257 ms
45,496 KB
testcase_28 AC 261 ms
46,316 KB
testcase_29 AC 133 ms
41,556 KB
testcase_30 AC 130 ms
41,176 KB
testcase_31 AC 135 ms
41,428 KB
testcase_32 AC 131 ms
41,288 KB
testcase_33 AC 134 ms
41,176 KB
testcase_34 AC 144 ms
41,840 KB
testcase_35 AC 141 ms
41,096 KB
testcase_36 AC 144 ms
41,688 KB
testcase_37 AC 146 ms
41,376 KB
testcase_38 AC 192 ms
43,580 KB
testcase_39 AC 194 ms
43,516 KB
testcase_40 AC 207 ms
45,516 KB
testcase_41 AC 228 ms
46,040 KB
testcase_42 AC 211 ms
45,556 KB
testcase_43 AC 169 ms
42,364 KB
testcase_44 AC 325 ms
47,460 KB
testcase_45 AC 197 ms
43,844 KB
testcase_46 AC 156 ms
42,036 KB
testcase_47 AC 309 ms
47,060 KB
testcase_48 AC 274 ms
45,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Main {
	public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        long n = sc.nextLong();
        int m = sc.nextInt();
        long nokori = n/1000*1000-n/1000/m*1000*m;
        nokori/=1000;
        long ans = 1;
        BigInteger bigInteger = new BigInteger("1");
        for(int i=0;i<(int)nokori;i++){
        	bigInteger=bigInteger.multiply(new BigInteger(""+m).subtract(new BigInteger(""+i)));
        	bigInteger=bigInteger.divide(new BigInteger(""+(i+1)));
        }
        System.out.println(bigInteger.mod(new BigInteger("1000000000")));       
	}
}
0