結果

問題 No.250 atetubouのzetubou
ユーザー RubikunRubikun
提出日時 2019-06-17 03:28:01
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 497 bytes
コンパイル時間 1,276 ms
コンパイル使用メモリ 166,244 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-04 01:33:39
合計ジャッジ時間 4,473 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
5,248 KB
testcase_01 AC 21 ms
5,376 KB
testcase_02 AC 174 ms
5,376 KB
testcase_03 AC 195 ms
5,376 KB
testcase_04 AC 172 ms
5,376 KB
testcase_05 AC 172 ms
5,376 KB
testcase_06 AC 135 ms
5,376 KB
testcase_07 AC 66 ms
5,376 KB
testcase_08 AC 162 ms
5,376 KB
testcase_09 AC 125 ms
5,376 KB
testcase_10 AC 176 ms
5,376 KB
testcase_11 AC 107 ms
5,376 KB
testcase_12 AC 161 ms
5,376 KB
testcase_13 AC 88 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

typedef long long ll;
#define all(x) (x).begin(),(x).end()
const int mod=1000000007;

int main(){

    int Q;cin>>Q;
    for(int i=0;i<Q;i++){
        double a,b,c;cin>>a>>b>>c;
        double l=0;
        for(double i=b+a-1;i>b;i--){
            l+=log10(i);
        }
        for(double i=1;i<=a-1;i++){
            l-=log10(i);
        }
        l-=log10(c);
        if(l>=0.00000005) cout<<"ZETUBOU"<<endl;
        else cout<<"AC"<<endl;
    }
}
0