結果

問題 No.928 軽減税率?
ユーザー 37zigen37zigen
提出日時 2019-11-22 22:31:42
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 820 bytes
コンパイル時間 2,106 ms
コンパイル使用メモリ 77,204 KB
実行使用メモリ 56,008 KB
最終ジャッジ日時 2024-10-11 04:14:56
合計ジャッジ時間 8,068 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,352 KB
testcase_01 AC 136 ms
41,424 KB
testcase_02 AC 136 ms
41,500 KB
testcase_03 AC 135 ms
41,268 KB
testcase_04 AC 137 ms
41,084 KB
testcase_05 AC 135 ms
41,124 KB
testcase_06 AC 135 ms
41,424 KB
testcase_07 AC 136 ms
41,120 KB
testcase_08 AC 142 ms
41,424 KB
testcase_09 AC 138 ms
41,220 KB
testcase_10 AC 137 ms
41,364 KB
testcase_11 AC 135 ms
41,280 KB
testcase_12 AC 135 ms
41,204 KB
testcase_13 AC 135 ms
41,224 KB
testcase_14 AC 136 ms
41,000 KB
testcase_15 AC 133 ms
41,328 KB
testcase_16 AC 135 ms
41,204 KB
testcase_17 AC 135 ms
41,404 KB
testcase_18 AC 135 ms
41,412 KB
testcase_19 AC 136 ms
41,128 KB
testcase_20 AC 140 ms
41,012 KB
testcase_21 AC 136 ms
40,976 KB
testcase_22 WA -
testcase_23 AC 136 ms
41,120 KB
testcase_24 AC 139 ms
41,196 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.*;
import java.util.*;
import java.io.*;

class Main
{
    public static void main(String[] args)
    {
        Scanner sc = new Scanner(System.in);
        long P = sc.nextLong();
        long Q = sc.nextLong();
        long A = sc.nextLong();
        new Main().run(P, Q, A);
    }
    
    void run(long P, long Q, long A) {
        if (P < Q || (P == Q)) {
            System.out.println((long) 1e9);
            return;
        }
        if (A == 0) {
            System.out.println(0);
            return;
        }
        long ans = Math.max(0, (A - 1) * 100 / (P - Q) - 1);
        for (long x = Math.max(1, (A - 1) * 100 / (P - Q)); x <= (A + 1) * 100 / (P - Q); ++x) {
            if ((P + 100) * x / 100  < (Q + 100) * x / 100 + A ) ++ans;
        }
        System.out.println(ans);
    }
}
0