結果

問題 No.928 軽減税率?
ユーザー tamatotamato
提出日時 2019-11-22 22:35:41
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 447 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 54,432 KB
最終ジャッジ日時 2024-10-11 04:17:05
合計ジャッジ時間 2,539 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,072 KB
testcase_01 AC 39 ms
53,268 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 38 ms
52,596 KB
testcase_05 AC 37 ms
52,392 KB
testcase_06 AC 36 ms
53,852 KB
testcase_07 AC 37 ms
53,160 KB
testcase_08 AC 37 ms
52,724 KB
testcase_09 AC 36 ms
54,216 KB
testcase_10 AC 40 ms
52,272 KB
testcase_11 AC 38 ms
53,468 KB
testcase_12 AC 37 ms
53,520 KB
testcase_13 AC 38 ms
52,680 KB
testcase_14 AC 38 ms
54,020 KB
testcase_15 AC 36 ms
52,480 KB
testcase_16 AC 38 ms
52,724 KB
testcase_17 AC 38 ms
53,264 KB
testcase_18 AC 37 ms
53,788 KB
testcase_19 AC 36 ms
52,848 KB
testcase_20 AC 37 ms
52,764 KB
testcase_21 AC 37 ms
52,432 KB
testcase_22 AC 37 ms
52,400 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 39 ms
52,936 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import floor

P, Q, A = map(int, input().split())

if P <= Q:
    print(0)
    exit()

ans = 0
for mod in range(100):
    p = floor(P*mod/100)
    q = floor(Q*mod/100)
    k = (q - p + A) / (P - Q)
    if mod != 0:
        if floor(k) == k:
            ans += floor(k)
        else:
            ans += floor(k) + 1
    else:
        if floor(k) == k:
            ans += floor(k) - 1
        else:
            ans += floor(k)

print(ans)
0