結果

問題 No.928 軽減税率?
ユーザー titiatitia
提出日時 2019-11-22 22:51:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 133 bytes
コンパイル時間 363 ms
コンパイル使用メモリ 82,568 KB
実行使用メモリ 61,632 KB
最終ジャッジ日時 2024-04-19 12:14:53
合計ジャッジ時間 22,072 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 382 ms
59,004 KB
testcase_01 AC 646 ms
60,656 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 726 ms
61,632 KB
testcase_05 AC 725 ms
60,468 KB
testcase_06 AC 717 ms
59,856 KB
testcase_07 AC 726 ms
59,856 KB
testcase_08 AC 729 ms
61,320 KB
testcase_09 AC 726 ms
61,184 KB
testcase_10 AC 721 ms
61,100 KB
testcase_11 AC 720 ms
60,128 KB
testcase_12 AC 723 ms
60,656 KB
testcase_13 AC 728 ms
61,144 KB
testcase_14 AC 722 ms
60,460 KB
testcase_15 AC 726 ms
60,684 KB
testcase_16 AC 724 ms
60,948 KB
testcase_17 AC 714 ms
60,192 KB
testcase_18 WA -
testcase_19 AC 709 ms
60,452 KB
testcase_20 AC 719 ms
61,160 KB
testcase_21 AC 719 ms
60,996 KB
testcase_22 AC 253 ms
60,940 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 249 ms
58,624 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

P,Q,A=map(int,input().split())
ANS=0
for i in range(1,5*10**7):
    if int((1+P/100)*i)<int((1+Q/100)*i)+A:
        ANS+=1
print(ANS)
0