結果

問題 No.928 軽減税率?
ユーザー hedwig100hedwig100
提出日時 2020-04-09 20:44:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 319 ms / 1,000 ms
コード長 761 bytes
コンパイル時間 364 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-09-13 20:21:55
合計ジャッジ時間 5,622 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 33 ms
10,752 KB
testcase_03 AC 33 ms
10,752 KB
testcase_04 AC 74 ms
10,752 KB
testcase_05 AC 142 ms
10,752 KB
testcase_06 AC 140 ms
10,624 KB
testcase_07 AC 202 ms
10,752 KB
testcase_08 AC 159 ms
10,752 KB
testcase_09 AC 193 ms
10,752 KB
testcase_10 AC 133 ms
10,752 KB
testcase_11 AC 129 ms
10,624 KB
testcase_12 AC 254 ms
10,624 KB
testcase_13 AC 86 ms
10,752 KB
testcase_14 AC 254 ms
10,624 KB
testcase_15 AC 121 ms
10,624 KB
testcase_16 AC 219 ms
10,624 KB
testcase_17 AC 316 ms
10,752 KB
testcase_18 AC 319 ms
10,624 KB
testcase_19 AC 319 ms
10,624 KB
testcase_20 AC 318 ms
10,752 KB
testcase_21 AC 319 ms
10,752 KB
testcase_22 AC 30 ms
10,624 KB
testcase_23 AC 30 ms
10,752 KB
testcase_24 AC 33 ms
10,624 KB
testcase_25 AC 32 ms
10,752 KB
testcase_26 AC 33 ms
10,752 KB
testcase_27 AC 33 ms
10,624 KB
testcase_28 AC 33 ms
10,624 KB
testcase_29 AC 33 ms
10,624 KB
testcase_30 AC 33 ms
10,624 KB
testcase_31 AC 32 ms
10,752 KB
testcase_32 AC 30 ms
10,752 KB
testcase_33 AC 32 ms
10,880 KB
testcase_34 AC 32 ms
10,624 KB
testcase_35 AC 32 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7
INF = 10 ** 10
import sys
input = sys.stdin.readline
sys.setrecursionlimit(100000000)
dy = (-1,0,1,0)
dx = (0,1,0,-1)
from bisect import bisect_left,bisect_right
from collections import deque

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

    if p == q:
        if a == 0:
            print(0)
            return
        else:
            print(1000000000)
            return
    if p < q:
        ans = 1000000000
        for x in range(1,10001):
            if (x * p)//100 >= (x * q)//100 + a:
                ans -= 1
        print(ans)
        return
    
    ans = 0
    for x in range(1,100 * a + 20):
        if (x * p)//100 < (x * q)//100 + a:
            ans +=1           

    print(ans)

if __name__ =='__main__':
    main()  
0