結果

問題 No.128 お年玉(1)
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-06 19:49:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 5,000 ms
コード長 391 bytes
コンパイル時間 1,802 ms
コンパイル使用メモリ 73,988 KB
実行使用メモリ 54,320 KB
最終ジャッジ日時 2024-10-01 09:52:32
合計ジャッジ時間 5,566 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
53,148 KB
testcase_01 AC 122 ms
53,812 KB
testcase_02 AC 127 ms
54,116 KB
testcase_03 AC 126 ms
54,152 KB
testcase_04 AC 107 ms
52,792 KB
testcase_05 AC 122 ms
53,800 KB
testcase_06 AC 119 ms
54,312 KB
testcase_07 AC 124 ms
54,148 KB
testcase_08 AC 130 ms
54,320 KB
testcase_09 AC 121 ms
54,028 KB
testcase_10 AC 113 ms
53,136 KB
testcase_11 AC 130 ms
54,220 KB
testcase_12 AC 112 ms
52,988 KB
testcase_13 AC 123 ms
53,948 KB
testcase_14 AC 130 ms
53,968 KB
testcase_15 AC 126 ms
54,056 KB
testcase_16 AC 126 ms
53,984 KB
testcase_17 AC 129 ms
54,044 KB
testcase_18 AC 133 ms
53,888 KB
testcase_19 AC 125 ms
53,976 KB
testcase_20 AC 116 ms
52,824 KB
testcase_21 AC 127 ms
53,824 KB
testcase_22 AC 130 ms
54,092 KB
testcase_23 AC 119 ms
52,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main {
    public static void main(String[] args) throws Exception {
        Scanner koko = new Scanner(System.in);
        long n = koko.nextLong();
        int m = koko.nextInt();
        long modn = n%1000;
        long total = (n-modn)/1000;
        long modt = total%m;
        long h = (total-modt)/m;
        System.out.println(h*1000);
    }
}
0