結果

問題 No.128 お年玉(1)
ユーザー yagi2yagi2
提出日時 2017-04-24 19:11:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 112 ms / 5,000 ms
コード長 381 bytes
コンパイル時間 1,714 ms
コンパイル使用メモリ 74,356 KB
実行使用メモリ 41,460 KB
最終ジャッジ日時 2024-10-01 10:34:32
合計ジャッジ時間 4,948 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
40,180 KB
testcase_01 AC 103 ms
41,024 KB
testcase_02 AC 96 ms
40,008 KB
testcase_03 AC 98 ms
40,672 KB
testcase_04 AC 104 ms
41,208 KB
testcase_05 AC 91 ms
40,276 KB
testcase_06 AC 103 ms
41,068 KB
testcase_07 AC 93 ms
40,016 KB
testcase_08 AC 104 ms
41,004 KB
testcase_09 AC 95 ms
39,876 KB
testcase_10 AC 93 ms
39,952 KB
testcase_11 AC 98 ms
40,336 KB
testcase_12 AC 96 ms
40,216 KB
testcase_13 AC 105 ms
41,216 KB
testcase_14 AC 108 ms
41,188 KB
testcase_15 AC 97 ms
40,204 KB
testcase_16 AC 112 ms
41,308 KB
testcase_17 AC 106 ms
41,088 KB
testcase_18 AC 103 ms
41,460 KB
testcase_19 AC 103 ms
40,992 KB
testcase_20 AC 104 ms
41,268 KB
testcase_21 AC 103 ms
41,096 KB
testcase_22 AC 105 ms
41,352 KB
testcase_23 AC 106 ms
41,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigInteger;
import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        BigInteger N = new BigInteger(sc.next());
        BigInteger M = new BigInteger(sc.next());

        System.out.println(N.divide(M).divide(new BigInteger("1000")).multiply(new BigInteger("1000")));
    }
}
0