結果

問題 No.928 軽減税率?
ユーザー titiatitia
提出日時 2019-11-22 22:50:42
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 131 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 62,016 KB
最終ジャッジ日時 2024-04-19 12:13:52
合計ジャッジ時間 40,764 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 717 ms
59,380 KB
testcase_01 TLE -
testcase_02 WA -
testcase_03 WA -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 462 ms
59,236 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 463 ms
60,040 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,10**8):
    if int((1+P/100)*i)<int((1+Q/100)*i)+A:
        ANS+=1
print(ANS)
0