結果

問題 No.928 軽減税率?
ユーザー pluto77pluto77
提出日時 2019-12-04 11:18:25
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 101 ms / 1,000 ms
コード長 206 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 77,048 KB
実行使用メモリ 77,308 KB
最終ジャッジ日時 2024-05-07 10:13:00
合計ジャッジ時間 5,101 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
76,324 KB
testcase_01 AC 100 ms
76,732 KB
testcase_02 AC 88 ms
76,672 KB
testcase_03 AC 93 ms
76,728 KB
testcase_04 AC 98 ms
76,672 KB
testcase_05 AC 99 ms
76,800 KB
testcase_06 AC 98 ms
77,308 KB
testcase_07 AC 98 ms
76,860 KB
testcase_08 AC 100 ms
76,672 KB
testcase_09 AC 101 ms
76,544 KB
testcase_10 AC 100 ms
76,544 KB
testcase_11 AC 98 ms
76,696 KB
testcase_12 AC 99 ms
77,184 KB
testcase_13 AC 99 ms
76,536 KB
testcase_14 AC 97 ms
76,800 KB
testcase_15 AC 98 ms
76,460 KB
testcase_16 AC 99 ms
77,072 KB
testcase_17 AC 92 ms
76,672 KB
testcase_18 AC 94 ms
76,444 KB
testcase_19 AC 94 ms
76,800 KB
testcase_20 AC 93 ms
76,692 KB
testcase_21 AC 94 ms
76,800 KB
testcase_22 AC 83 ms
76,672 KB
testcase_23 AC 85 ms
76,972 KB
testcase_24 AC 85 ms
76,544 KB
testcase_25 AC 84 ms
76,604 KB
testcase_26 AC 86 ms
76,416 KB
testcase_27 AC 86 ms
77,056 KB
testcase_28 AC 86 ms
77,052 KB
testcase_29 AC 87 ms
76,684 KB
testcase_30 AC 85 ms
76,416 KB
testcase_31 AC 88 ms
76,672 KB
testcase_32 AC 83 ms
76,340 KB
testcase_33 AC 87 ms
76,332 KB
testcase_34 AC 88 ms
76,544 KB
testcase_35 AC 86 ms
76,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki928

p,q,a=map(int,raw_input().split())
res=0
for i in range(1,2*10**6+1):
 if (100+p)*i/100<(100+q)*i/100+a:
  res+=1
if (100+p)*2*10**4<(100+q)*2*10**4+a:
 print 10**9-(2*10**6-res)
else:
 print res
0