結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 193 ms
5,248 KB
testcase_01 AC 193 ms
5,376 KB
testcase_02 AC 192 ms
5,376 KB
testcase_03 AC 189 ms
5,376 KB
testcase_04 AC 194 ms
5,376 KB
testcase_05 AC 195 ms
5,376 KB
testcase_06 AC 188 ms
5,376 KB
testcase_07 AC 193 ms
5,376 KB
testcase_08 AC 198 ms
5,376 KB
testcase_09 AC 188 ms
5,376 KB
testcase_10 AC 189 ms
5,376 KB
testcase_11 AC 194 ms
5,376 KB
testcase_12 AC 189 ms
5,376 KB
testcase_13 AC 191 ms
5,376 KB
testcase_14 AC 187 ms
5,376 KB
testcase_15 AC 194 ms
5,376 KB
testcase_16 AC 189 ms
5,376 KB
testcase_17 AC 187 ms
5,376 KB
testcase_18 AC 185 ms
5,376 KB
testcase_19 AC 188 ms
5,376 KB
testcase_20 AC 189 ms
5,376 KB
testcase_21 AC 188 ms
5,376 KB
testcase_22 AC 190 ms
5,376 KB
testcase_23 AC 192 ms
5,376 KB
testcase_24 AC 188 ms
5,376 KB
testcase_25 AC 189 ms
5,376 KB
testcase_26 AC 189 ms
5,376 KB
testcase_27 AC 193 ms
5,376 KB
testcase_28 AC 189 ms
5,376 KB
testcase_29 AC 189 ms
5,376 KB
testcase_30 AC 188 ms
5,376 KB
testcase_31 AC 191 ms
5,376 KB
testcase_32 AC 191 ms
5,376 KB
testcase_33 AC 196 ms
5,376 KB
testcase_34 AC 191 ms
5,376 KB
testcase_35 AC 192 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  x[100],y[100];
    rep(i,100){
        x[i] = p*(i+1)/100 - p*i/100 ;
        y[i] = q*(i+1)/100 - q*i/100; 
    }
    rep(i,99)x[i+1]+=x[i], y[i+1]+=y[i];
    int in = 0, out = a;
    int ans = 0;
    REP(i,1,10000001){
        rep(j,100){
            if(in+x[j]<out+y[j])++ans;
        }
        in+=x[99];out+=y[99];
    }
    cout<<ans<<endl;
    return 0;
}
0