結果

問題 No.928 軽減税率?
ユーザー tanon710tanon710
提出日時 2020-05-04 22:26:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 118 ms / 1,000 ms
コード長 439 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 60,500 KB
最終ジャッジ日時 2024-06-25 01:30:13
合計ジャッジ時間 4,904 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
59,520 KB
testcase_01 AC 113 ms
59,148 KB
testcase_02 AC 84 ms
58,580 KB
testcase_03 AC 85 ms
58,320 KB
testcase_04 AC 116 ms
58,856 KB
testcase_05 AC 114 ms
59,396 KB
testcase_06 AC 114 ms
58,756 KB
testcase_07 AC 114 ms
58,964 KB
testcase_08 AC 116 ms
59,664 KB
testcase_09 AC 118 ms
60,324 KB
testcase_10 AC 112 ms
59,344 KB
testcase_11 AC 116 ms
60,500 KB
testcase_12 AC 117 ms
58,580 KB
testcase_13 AC 101 ms
59,804 KB
testcase_14 AC 115 ms
59,400 KB
testcase_15 AC 114 ms
60,400 KB
testcase_16 AC 115 ms
59,776 KB
testcase_17 AC 115 ms
58,496 KB
testcase_18 AC 114 ms
60,420 KB
testcase_19 AC 114 ms
59,704 KB
testcase_20 AC 115 ms
59,844 KB
testcase_21 AC 116 ms
59,612 KB
testcase_22 AC 36 ms
53,148 KB
testcase_23 AC 94 ms
58,696 KB
testcase_24 AC 84 ms
58,920 KB
testcase_25 AC 91 ms
58,332 KB
testcase_26 AC 93 ms
60,216 KB
testcase_27 AC 92 ms
58,468 KB
testcase_28 AC 92 ms
58,064 KB
testcase_29 AC 92 ms
59,404 KB
testcase_30 AC 92 ms
57,848 KB
testcase_31 AC 92 ms
59,380 KB
testcase_32 AC 37 ms
52,220 KB
testcase_33 AC 92 ms
58,164 KB
testcase_34 AC 82 ms
58,272 KB
testcase_35 AC 92 ms
59,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

p,q,a=map(int,input().split())
if a==0 and p==q:
    cnt=0
else:
    if p<=q:
        cnt=10**9
        for i in range(1,10**7):
            eatin=i+(i*p)//100
            takeout=i+(i*q)//100+a
            if eatin>=takeout:
                cnt-=1
    elif p>q:
        cnt=0
        for i in range(1,10**7):
            eatin=i+(i*p)//100
            takeout=i+(i*q)//100+a
            if eatin<takeout:
                cnt+=1
print(cnt)
0