結果

問題 No.928 軽減税率?
ユーザー tempura_pptempura_pp
提出日時 2019-11-22 23:32:26
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 135 ms / 1,000 ms
コード長 628 bytes
コンパイル時間 2,240 ms
コンパイル使用メモリ 182,372 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-19 13:58:20
合計ジャッジ時間 7,933 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
5,248 KB
testcase_01 AC 126 ms
5,376 KB
testcase_02 AC 133 ms
5,376 KB
testcase_03 AC 130 ms
5,376 KB
testcase_04 AC 129 ms
5,376 KB
testcase_05 AC 130 ms
5,376 KB
testcase_06 AC 128 ms
5,376 KB
testcase_07 AC 135 ms
5,376 KB
testcase_08 AC 133 ms
5,376 KB
testcase_09 AC 129 ms
5,376 KB
testcase_10 AC 132 ms
5,376 KB
testcase_11 AC 133 ms
5,376 KB
testcase_12 AC 132 ms
5,376 KB
testcase_13 AC 129 ms
5,376 KB
testcase_14 AC 128 ms
5,376 KB
testcase_15 AC 128 ms
5,376 KB
testcase_16 AC 132 ms
5,376 KB
testcase_17 AC 130 ms
5,376 KB
testcase_18 AC 130 ms
5,376 KB
testcase_19 AC 130 ms
5,376 KB
testcase_20 AC 127 ms
5,376 KB
testcase_21 AC 126 ms
5,376 KB
testcase_22 AC 129 ms
5,376 KB
testcase_23 AC 125 ms
5,376 KB
testcase_24 AC 131 ms
5,376 KB
testcase_25 AC 125 ms
5,376 KB
testcase_26 AC 132 ms
5,376 KB
testcase_27 AC 129 ms
5,376 KB
testcase_28 AC 127 ms
5,376 KB
testcase_29 AC 130 ms
5,376 KB
testcase_30 AC 126 ms
5,376 KB
testcase_31 AC 126 ms
5,376 KB
testcase_32 AC 125 ms
5,376 KB
testcase_33 AC 127 ms
5,376 KB
testcase_34 AC 129 ms
5,376 KB
testcase_35 AC 126 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("Ofast,no-stack-protector,unroll-loops")
#pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=native")
#include<bits/stdc++.h>
using namespace std;
#define REP(i,m,n) for(int i=(int)(m) ; i < (int) (n) ; ++i )
#define rep(i,n) REP(i,0,n)

int main(){
    int p,q,a;
    cin>>p>>q>>a;
    int  z[100];
    rep(i,100){
        z[i]=p*(i+1)/100 - p*i/100 - q*(i+1)/100 + q*i/100; 
    }
    rep(i,99)z[i+1]+=z[i];
    int in = -a;
    int ans = 0;
    REP(i,1,10000001){
        rep(j,100){
            if(in+z[j]<0)++ans;
        }
        in+=z[99];
    }
    cout<<ans<<endl;
    return 0;
}
0