結果

問題 No.928 軽減税率?
ユーザー tanon710tanon710
提出日時 2020-05-04 22:23:46
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 345 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 59,536 KB
最終ジャッジ日時 2024-06-25 01:27:06
合計ジャッジ時間 5,202 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
58,112 KB
testcase_01 AC 110 ms
58,368 KB
testcase_02 AC 84 ms
57,472 KB
testcase_03 AC 83 ms
57,600 KB
testcase_04 AC 118 ms
58,880 KB
testcase_05 AC 115 ms
58,496 KB
testcase_06 AC 115 ms
58,368 KB
testcase_07 AC 115 ms
58,428 KB
testcase_08 AC 114 ms
58,368 KB
testcase_09 AC 115 ms
58,368 KB
testcase_10 AC 111 ms
58,880 KB
testcase_11 AC 115 ms
58,880 KB
testcase_12 AC 115 ms
58,368 KB
testcase_13 AC 100 ms
58,880 KB
testcase_14 AC 116 ms
58,112 KB
testcase_15 AC 116 ms
58,240 KB
testcase_16 AC 116 ms
58,240 KB
testcase_17 AC 115 ms
58,368 KB
testcase_18 AC 115 ms
58,112 KB
testcase_19 AC 114 ms
58,368 KB
testcase_20 AC 113 ms
58,368 KB
testcase_21 AC 113 ms
58,624 KB
testcase_22 WA -
testcase_23 AC 96 ms
57,856 KB
testcase_24 AC 85 ms
58,112 KB
testcase_25 AC 91 ms
57,728 KB
testcase_26 AC 92 ms
57,984 KB
testcase_27 AC 91 ms
57,984 KB
testcase_28 AC 92 ms
58,112 KB
testcase_29 AC 89 ms
57,600 KB
testcase_30 AC 90 ms
57,600 KB
testcase_31 AC 92 ms
58,240 KB
testcase_32 WA -
testcase_33 AC 90 ms
57,728 KB
testcase_34 AC 79 ms
58,240 KB
testcase_35 AC 92 ms
57,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

p,q,a=map(int,input().split())
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
else:
    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