結果

問題 No.928 軽減税率?
ユーザー ks2mks2m
提出日時 2019-11-22 23:43:57
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 594 bytes
コンパイル時間 2,204 ms
コンパイル使用メモリ 74,032 KB
実行使用メモリ 41,408 KB
最終ジャッジ日時 2024-10-11 06:28:19
合計ジャッジ時間 8,743 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
41,380 KB
testcase_01 AC 139 ms
41,048 KB
testcase_02 AC 136 ms
41,104 KB
testcase_03 AC 138 ms
41,336 KB
testcase_04 AC 146 ms
41,408 KB
testcase_05 AC 147 ms
40,852 KB
testcase_06 AC 147 ms
41,040 KB
testcase_07 AC 147 ms
41,068 KB
testcase_08 AC 131 ms
39,964 KB
testcase_09 AC 148 ms
41,152 KB
testcase_10 AC 146 ms
41,136 KB
testcase_11 AC 145 ms
41,200 KB
testcase_12 AC 150 ms
41,168 KB
testcase_13 AC 146 ms
40,980 KB
testcase_14 AC 151 ms
41,100 KB
testcase_15 AC 145 ms
41,212 KB
testcase_16 AC 147 ms
40,972 KB
testcase_17 AC 151 ms
41,260 KB
testcase_18 AC 148 ms
41,016 KB
testcase_19 AC 152 ms
41,236 KB
testcase_20 AC 149 ms
41,196 KB
testcase_21 AC 150 ms
41,296 KB
testcase_22 AC 133 ms
41,188 KB
testcase_23 AC 132 ms
41,000 KB
testcase_24 AC 132 ms
41,108 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 137 ms
41,164 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		double p = sc.nextInt();
		double q = sc.nextInt();
		int a = sc.nextInt();
		sc.close();

		if (p <= q) {
			if (a == 0 && p == q) {
				System.out.println(0);
			} else {
				System.out.println(1000000000);
			}
		} else {
			int ans = 0;
			for (int i = 100 * a + 2; i > 0; i--) {
				int x = (int) ((100 + p) * i / 100);
				int y = (int) ((100 + q) * i / 100);
				if (x < y + a) {
					ans++;
				}
			}
			System.out.println(ans);
		}
	}
}
0