結果

問題 No.928 軽減税率?
ユーザー mkawa2mkawa2
提出日時 2021-04-06 11:43:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 904 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-06-10 22:21:21
合計ジャッジ時間 36,093 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 944 ms
10,624 KB
testcase_01 AC 905 ms
10,752 KB
testcase_02 TLE -
testcase_03 TLE -
testcase_04 AC 916 ms
10,624 KB
testcase_05 AC 918 ms
10,624 KB
testcase_06 TLE -
testcase_07 AC 991 ms
10,752 KB
testcase_08 AC 900 ms
10,624 KB
testcase_09 AC 955 ms
10,624 KB
testcase_10 AC 912 ms
10,752 KB
testcase_11 AC 878 ms
10,752 KB
testcase_12 AC 948 ms
10,624 KB
testcase_13 AC 952 ms
10,752 KB
testcase_14 AC 949 ms
10,624 KB
testcase_15 AC 977 ms
10,752 KB
testcase_16 AC 887 ms
10,752 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 981 ms
10,624 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 RE -
testcase_23 RE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 RE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10**6)
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()

l=max(1,100*a//(p-q)-1000000)
r=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