結果

問題 No.928 軽減税率?
ユーザー finefine
提出日時 2019-11-22 23:16:43
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 689 bytes
コンパイル時間 2,297 ms
コンパイル使用メモリ 174,604 KB
実行使用メモリ 16,832 KB
最終ジャッジ日時 2024-04-19 12:33:10
合計ジャッジ時間 6,769 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize ("O3")
#pragma GCC target ("avx")
#include <bits/stdc++.h>

using namespace std;

using ll = long long;

// (100 + q) * x + 100 * a + 1 > (100 + p) * x
// (q - p) * x > -100 * a + 1
// x > (100-100 * a) / (q - p) [q > p]
// x < (100 * a - 100) / (p - q) [q < p]

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    ll p, q, a;
    cin >> p >> q >> a;
    if (p == q) {
        cout << (a == 0 ? 0 : 1000000000) << "\n";
        return 0;
    }

    ll ans = 0;
    for (ll i = 1; i <= 1000000000; ++i) {
        ll v1 = (100 + p) * i / 100;
        ll v2 = (100 + q) * i / 100 + a;
        ans += (v2 > v1);
    }
    cout << ans << "\n";
    return 0;
}
0