結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 381 ms
59,908 KB
testcase_01 AC 654 ms
60,548 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 726 ms
60,108 KB
testcase_05 AC 725 ms
61,412 KB
testcase_06 AC 723 ms
61,352 KB
testcase_07 AC 725 ms
60,296 KB
testcase_08 AC 724 ms
61,132 KB
testcase_09 AC 724 ms
61,136 KB
testcase_10 AC 723 ms
60,208 KB
testcase_11 AC 725 ms
61,156 KB
testcase_12 AC 725 ms
61,512 KB
testcase_13 AC 736 ms
60,632 KB
testcase_14 AC 724 ms
60,016 KB
testcase_15 AC 727 ms
59,864 KB
testcase_16 AC 726 ms
60,080 KB
testcase_17 AC 719 ms
61,476 KB
testcase_18 WA -
testcase_19 AC 718 ms
59,836 KB
testcase_20 AC 719 ms
60,076 KB
testcase_21 AC 719 ms
61,436 KB
testcase_22 AC 256 ms
59,380 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 255 ms
58,588 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