結果

問題 No.128 お年玉(1)
ユーザー MoominPazMoominPaz
提出日時 2015-10-04 08:19:26
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 748 bytes
コンパイル時間 2,059 ms
コンパイル使用メモリ 74,136 KB
実行使用メモリ 55,872 KB
最終ジャッジ日時 2024-10-01 10:04:48
合計ジャッジ時間 5,358 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
41,204 KB
testcase_01 AC 103 ms
40,184 KB
testcase_02 AC 101 ms
40,196 KB
testcase_03 WA -
testcase_04 AC 102 ms
39,820 KB
testcase_05 AC 99 ms
40,252 KB
testcase_06 AC 113 ms
41,256 KB
testcase_07 AC 103 ms
40,608 KB
testcase_08 AC 98 ms
40,272 KB
testcase_09 AC 113 ms
41,296 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

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