結果

問題 No.928 軽減税率?
ユーザー LaikaLaika
提出日時 2020-01-25 22:54:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 128 bytes
コンパイル時間 119 ms
コンパイル使用メモリ 10,676 KB
実行使用メモリ 7,956 KB
最終ジャッジ日時 2023-10-12 04:45:57
合計ジャッジ時間 16,275 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
7,868 KB
testcase_01 AC 18 ms
7,816 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 171 ms
7,768 KB
testcase_05 AC 412 ms
7,800 KB
testcase_06 AC 369 ms
7,756 KB
testcase_07 AC 622 ms
7,900 KB
testcase_08 AC 470 ms
7,748 KB
testcase_09 AC 573 ms
7,792 KB
testcase_10 AC 380 ms
7,680 KB
testcase_11 AC 363 ms
7,840 KB
testcase_12 AC 799 ms
7,912 KB
testcase_13 AC 274 ms
7,768 KB
testcase_14 AC 811 ms
7,768 KB
testcase_15 AC 324 ms
7,812 KB
testcase_16 AC 687 ms
7,760 KB
testcase_17 AC 939 ms
7,676 KB
testcase_18 WA -
testcase_19 AC 943 ms
7,820 KB
testcase_20 AC 941 ms
7,764 KB
testcase_21 AC 941 ms
7,772 KB
testcase_22 AC 16 ms
7,880 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 15 ms
7,832 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

p, q, a = map(int, input().strip().split())
print(sum(1 for x in range(1, 200*a) if int((1+p/100)*x) < int((1+q/100)*x)+a))
    
0