結果

問題 No.128 お年玉(1)
ユーザー MoominPazMoominPaz
提出日時 2015-10-04 08:23:49
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 748 bytes
コンパイル時間 2,024 ms
コンパイル使用メモリ 74,356 KB
実行使用メモリ 61,164 KB
最終ジャッジ日時 2024-10-01 10:06:49
合計ジャッジ時間 12,278 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
53,980 KB
testcase_01 WA -
testcase_02 AC 128 ms
54,144 KB
testcase_03 WA -
testcase_04 AC 123 ms
54,000 KB
testcase_05 AC 122 ms
53,972 KB
testcase_06 AC 112 ms
52,940 KB
testcase_07 AC 112 ms
52,988 KB
testcase_08 AC 111 ms
52,952 KB
testcase_09 AC 125 ms
54,076 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 TLE -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    long N;
    long M;
    long Dist;
    long Digit;
    long Divide;
    Scanner sc = new Scanner(System.in);
    public static void main(String[] args) {
        new Main().solve();
    }

    void solve() {
        N = sc.nextLong();
        M = sc.nextLong();
        Dist = N / M;
        Digit = (long)Math.log10(Dist) + 1;
        Divide = 1;
        for(int i = 0; i < Digit - 1; i ++) {
            Divide = Divide * 10;
        }
        Dist = (Dist / Divide) * Divide;
        if(Dist < 1000) {
            System.out.println(0);
        } else {
            while(Dist * M < N) {
                Dist = Dist + 1000;
            }
            System.out.println(Dist);
        }
    }
}
0