結果

問題 No.928 軽減税率?
ユーザー mkawa2mkawa2
提出日時 2024-06-10 23:18:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 62 ms / 1,000 ms
コード長 1,156 bytes
コンパイル時間 305 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 59,008 KB
最終ジャッジ日時 2024-06-10 23:18:49
合計ジャッジ時間 3,456 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

import sys

int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.buffer.readline())
def LI(): return list(map(int, sys.stdin.buffer.readline().split()))
def LI1(): return list(map(int1, sys.stdin.buffer.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def BI(): return sys.stdin.buffer.readline().rstrip()
def SI(): return sys.stdin.buffer.readline().rstrip().decode()
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
dij = [(0, 1), (1, 0), (1, 1), (1, -1)]
inf = 10**19
# md = 998244353
md = 10**9+7

p,q,a=LI()

if p==q:
    if a==0:print(0)
    else:print(10**9)
    exit()

if p<q:
    ans=10**9-1000004
    for x in range(1,1000005):
        s = (100+p)*x//100
        h = (100+q)*x//100+a
        if s < h: ans += 1
    print(ans)
else:
    l=max(1,100*a//(p-q)-1000000)
    r=min(10**9+1,l+2000000)
    ans=l-1
   
    for x in range(l,r):
        s=(100+p)*x//100
        h=(100+q)*x//100+a
        if s<h:ans+=1
    
    print(ans)
0