結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 711 ms
59,304 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 463 ms
59,856 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 456 ms
59,480 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