結果

問題 No.128 お年玉(1)
ユーザー matsuyoshi30matsuyoshi30
提出日時 2016-03-01 15:46:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 5,000 ms
コード長 312 bytes
コンパイル時間 2,053 ms
コンパイル使用メモリ 74,608 KB
実行使用メモリ 44,496 KB
最終ジャッジ日時 2024-10-01 10:15:08
合計ジャッジ時間 5,260 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
44,496 KB
testcase_01 AC 98 ms
40,224 KB
testcase_02 AC 108 ms
41,192 KB
testcase_03 AC 108 ms
41,240 KB
testcase_04 AC 108 ms
41,168 KB
testcase_05 AC 103 ms
40,344 KB
testcase_06 AC 96 ms
39,820 KB
testcase_07 AC 108 ms
41,240 KB
testcase_08 AC 107 ms
41,248 KB
testcase_09 AC 105 ms
41,048 KB
testcase_10 AC 109 ms
41,196 KB
testcase_11 AC 107 ms
40,828 KB
testcase_12 AC 98 ms
40,032 KB
testcase_13 AC 108 ms
40,860 KB
testcase_14 AC 121 ms
41,420 KB
testcase_15 AC 106 ms
40,276 KB
testcase_16 AC 112 ms
41,352 KB
testcase_17 AC 98 ms
40,528 KB
testcase_18 AC 106 ms
41,404 KB
testcase_19 AC 98 ms
40,316 KB
testcase_20 AC 110 ms
41,008 KB
testcase_21 AC 120 ms
41,228 KB
testcase_22 AC 101 ms
40,200 KB
testcase_23 AC 98 ms
40,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main {
    static final int NOGUCHI = 1000;

    public static void main(String[] args) throws Exception {
        Scanner in = new Scanner(System.in);
        long n = in.nextLong();
        int m = in.nextInt();

        System.out.println((n / m) / NOGUCHI * NOGUCHI);
    }
}
0