結果

問題 No.928 軽減税率?
ユーザー 37zigen37zigen
提出日時 2019-11-22 22:52:22
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,358 bytes
コンパイル時間 2,277 ms
コンパイル使用メモリ 77,236 KB
実行使用メモリ 55,688 KB
最終ジャッジ日時 2024-10-11 04:30:43
合計ジャッジ時間 8,561 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
53,952 KB
testcase_01 AC 130 ms
52,848 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 134 ms
53,940 KB
testcase_05 AC 133 ms
53,976 KB
testcase_06 AC 133 ms
53,980 KB
testcase_07 AC 130 ms
54,024 KB
testcase_08 AC 134 ms
53,884 KB
testcase_09 AC 136 ms
54,292 KB
testcase_10 AC 134 ms
54,016 KB
testcase_11 AC 133 ms
53,812 KB
testcase_12 AC 139 ms
53,784 KB
testcase_13 AC 136 ms
53,908 KB
testcase_14 AC 137 ms
54,092 KB
testcase_15 AC 135 ms
53,940 KB
testcase_16 AC 135 ms
53,920 KB
testcase_17 AC 132 ms
53,776 KB
testcase_18 AC 137 ms
53,924 KB
testcase_19 AC 133 ms
54,072 KB
testcase_20 AC 122 ms
53,048 KB
testcase_21 AC 135 ms
54,072 KB
testcase_22 AC 135 ms
54,172 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 137 ms
53,968 KB
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)
    {
        new Main().run();
    }
    
    long MAX = (long) 1e3;
    
    void run() {
        Scanner sc = new Scanner(System.in);
        long P = sc.nextLong();
        long Q = sc.nextLong();
        long A = sc.nextLong();
        System.out.println(solve(P, Q, A));
    }
    
    long exact(long P, long Q, long A) {
        long ans = 0;
        for (long x = 1; x <= MAX; ++x) {
            if ((P + 100) * x / 100  < (Q + 100) * x / 100 + A ) ++ans;
        }
        return ans;
    }
    
    long solve(long P, long Q, long A) {
        if (P == Q) {
            if (A == 0) return 0;
            else return MAX;
        }
        if (P < Q) {
            long v = Math.max(1, 100 * ( 1 - A) / (Q - P) + 1);
            long ans = MAX - v;
            for (long x = 1; x <= v; ++x) 
                if ((P + 100) * x / 100  < (Q + 100) * x / 100 + A ) ++ans;
            return ans;
        }
        if (A == 0) {
            return 0;
        }
        
        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;
        }
        return ans;
    }
}
0