結果

問題 No.928 軽減税率?
ユーザー tentententen
提出日時 2020-12-02 10:09:13
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 557 bytes
コンパイル時間 2,012 ms
コンパイル使用メモリ 73,844 KB
実行使用メモリ 54,612 KB
最終ジャッジ日時 2024-09-13 03:52:09
合計ジャッジ時間 8,011 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,264 KB
testcase_01 WA -
testcase_02 AC 131 ms
53,964 KB
testcase_03 AC 133 ms
54,064 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 134 ms
54,416 KB
testcase_08 AC 131 ms
53,984 KB
testcase_09 WA -
testcase_10 AC 134 ms
54,180 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 133 ms
54,108 KB
testcase_14 AC 133 ms
53,980 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 129 ms
53,948 KB
testcase_23 AC 130 ms
54,044 KB
testcase_24 AC 133 ms
53,960 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 129 ms
54,008 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        long p = sc.nextInt();
        long q = sc.nextInt();
        int a = sc.nextInt();
        int left = 0;
        int right = 1000000001;
        while (right - left > 1) {
            int m = (left + right) / 2;
            if ((100 + p) * m / 100 >= (100 + q) * m / 100 + a) {
                right = m;
            } else {
                left = m;
            }
        }
        System.out.println(left);
    }
}
0