結果

問題 No.928 軽減税率?
ユーザー 37zigen37zigen
提出日時 2019-11-22 22:53:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 1,000 ms
コード長 1,358 bytes
コンパイル時間 2,913 ms
コンパイル使用メモリ 77,752 KB
実行使用メモリ 54,344 KB
最終ジャッジ日時 2024-10-11 04:31:31
合計ジャッジ時間 8,049 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
53,816 KB
testcase_01 AC 134 ms
53,688 KB
testcase_02 AC 136 ms
53,688 KB
testcase_03 AC 134 ms
53,828 KB
testcase_04 AC 131 ms
54,032 KB
testcase_05 AC 132 ms
53,976 KB
testcase_06 AC 132 ms
54,344 KB
testcase_07 AC 135 ms
53,940 KB
testcase_08 AC 134 ms
53,756 KB
testcase_09 AC 133 ms
53,948 KB
testcase_10 AC 134 ms
54,212 KB
testcase_11 AC 134 ms
54,276 KB
testcase_12 AC 135 ms
54,012 KB
testcase_13 AC 132 ms
54,008 KB
testcase_14 AC 136 ms
54,028 KB
testcase_15 AC 134 ms
53,744 KB
testcase_16 AC 133 ms
53,912 KB
testcase_17 AC 134 ms
53,956 KB
testcase_18 AC 131 ms
53,736 KB
testcase_19 AC 136 ms
54,148 KB
testcase_20 AC 134 ms
54,020 KB
testcase_21 AC 138 ms
54,024 KB
testcase_22 AC 136 ms
54,088 KB
testcase_23 AC 132 ms
53,968 KB
testcase_24 AC 137 ms
53,664 KB
testcase_25 AC 133 ms
53,936 KB
testcase_26 AC 134 ms
53,832 KB
testcase_27 AC 139 ms
53,760 KB
testcase_28 AC 135 ms
54,224 KB
testcase_29 AC 135 ms
53,912 KB
testcase_30 AC 138 ms
53,900 KB
testcase_31 AC 133 ms
53,832 KB
testcase_32 AC 133 ms
54,096 KB
testcase_33 AC 134 ms
53,936 KB
testcase_34 AC 136 ms
53,776 KB
testcase_35 AC 134 ms
53,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Main
{
    public static void main(String[] args)
    {
        new Main().run();
    }
    
    long MAX = (long) 1e9;
    
    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