結果

問題 No.128 お年玉(1)
ユーザー dazydazy
提出日時 2016-09-13 17:49:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 5,000 ms
コード長 298 bytes
コンパイル時間 3,341 ms
コンパイル使用メモリ 74,200 KB
実行使用メモリ 54,252 KB
最終ジャッジ日時 2024-10-01 10:24:28
合計ジャッジ時間 7,228 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,112 KB
testcase_01 AC 124 ms
54,184 KB
testcase_02 AC 128 ms
54,248 KB
testcase_03 AC 127 ms
54,148 KB
testcase_04 AC 126 ms
53,952 KB
testcase_05 AC 126 ms
53,956 KB
testcase_06 AC 126 ms
53,896 KB
testcase_07 AC 125 ms
54,252 KB
testcase_08 AC 120 ms
53,728 KB
testcase_09 AC 123 ms
53,956 KB
testcase_10 AC 119 ms
53,828 KB
testcase_11 AC 126 ms
53,816 KB
testcase_12 AC 117 ms
54,092 KB
testcase_13 AC 128 ms
54,084 KB
testcase_14 AC 120 ms
54,080 KB
testcase_15 AC 135 ms
54,024 KB
testcase_16 AC 130 ms
54,128 KB
testcase_17 AC 129 ms
54,128 KB
testcase_18 AC 136 ms
54,152 KB
testcase_19 AC 136 ms
54,120 KB
testcase_20 AC 129 ms
53,992 KB
testcase_21 AC 127 ms
54,228 KB
testcase_22 AC 124 ms
54,012 KB
testcase_23 AC 127 ms
54,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Run {
    public static void main (String arg[]) {
        Scanner scan = new Scanner(System.in);
        long N = scan.nextLong();
        long M = scan.nextInt();
        long ans = (N / (M * 1000));
        ans *= 1000;
        System.out.println(ans);
    }
}
0