結果

問題 No.928 軽減税率?
ユーザー LaikaLaika
提出日時 2020-01-25 22:54:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 128 bytes
コンパイル時間 81 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-09-14 04:16:53
合計ジャッジ時間 19,483 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,496 KB
testcase_01 AC 36 ms
10,496 KB
testcase_02 TLE -
testcase_03 WA -
testcase_04 AC 238 ms
10,496 KB
testcase_05 AC 560 ms
10,496 KB
testcase_06 AC 506 ms
10,496 KB
testcase_07 AC 854 ms
10,496 KB
testcase_08 AC 647 ms
10,496 KB
testcase_09 AC 791 ms
10,624 KB
testcase_10 AC 522 ms
10,624 KB
testcase_11 AC 499 ms
10,496 KB
testcase_12 TLE -
testcase_13 AC 381 ms
10,496 KB
testcase_14 TLE -
testcase_15 AC 448 ms
10,496 KB
testcase_16 AC 936 ms
10,496 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 30 ms
10,624 KB
testcase_23 WA -
testcase_24 TLE -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 30 ms
10,496 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