結果

問題 No.928 軽減税率?
ユーザー PachicobuePachicobue
提出日時 2019-10-29 06:15:40
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 4 ms / 1,000 ms
コード長 411 bytes
コンパイル時間 1,716 ms
コンパイル使用メモリ 192,476 KB
最終ジャッジ日時 2025-01-08 02:05:54
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 34
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using usize = std::size_t;
int main()
{
    constexpr usize max = 1000000000;
    constexpr usize rep = 1000000;
    usize p, q, a;
    std::cin >> p >> q >> a;
    usize ans = 0;
    for (usize x = 1; x <= rep; x++) {
        if (x * p / 100 < x * q / 100 + a) { ans++; }
    }
    if (p < q or (p == q and a > 0)) { ans += (max - rep); }
    std::cout << ans << "\n";
    return 0;
}
0