結果

問題 No.928 軽減税率?
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-05-16 23:11:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 60 ms / 1,000 ms
コード長 244 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 59,648 KB
最終ジャッジ日時 2024-09-14 16:24:20
合計ジャッジ時間 3,431 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
58,240 KB
testcase_01 AC 54 ms
59,392 KB
testcase_02 AC 48 ms
58,240 KB
testcase_03 AC 49 ms
58,496 KB
testcase_04 AC 56 ms
59,264 KB
testcase_05 AC 59 ms
59,264 KB
testcase_06 AC 56 ms
59,136 KB
testcase_07 AC 57 ms
59,648 KB
testcase_08 AC 58 ms
59,392 KB
testcase_09 AC 60 ms
59,136 KB
testcase_10 AC 60 ms
59,520 KB
testcase_11 AC 58 ms
59,392 KB
testcase_12 AC 59 ms
59,136 KB
testcase_13 AC 57 ms
59,648 KB
testcase_14 AC 59 ms
59,136 KB
testcase_15 AC 59 ms
59,136 KB
testcase_16 AC 57 ms
59,392 KB
testcase_17 AC 51 ms
57,984 KB
testcase_18 AC 51 ms
58,624 KB
testcase_19 AC 52 ms
58,368 KB
testcase_20 AC 51 ms
58,240 KB
testcase_21 AC 50 ms
58,368 KB
testcase_22 AC 45 ms
57,856 KB
testcase_23 AC 48 ms
57,984 KB
testcase_24 AC 50 ms
58,112 KB
testcase_25 AC 49 ms
58,240 KB
testcase_26 AC 48 ms
58,240 KB
testcase_27 AC 49 ms
58,496 KB
testcase_28 AC 48 ms
58,240 KB
testcase_29 AC 49 ms
58,112 KB
testcase_30 AC 50 ms
57,856 KB
testcase_31 AC 50 ms
58,240 KB
testcase_32 AC 45 ms
58,496 KB
testcase_33 AC 50 ms
58,240 KB
testcase_34 AC 49 ms
58,112 KB
testcase_35 AC 49 ms
58,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

p,q,a = map(int,input().split())

ans = 0
def check(x):

    eatin = (100+p)*x//100
    takeout = a + (100+q)*x//100
    return eatin < takeout

for i in range(1,10**6+1):
    ans += check(i)

if check(10**9):
    ans += 10**9-10**6

print(ans)
0