結果

問題 No.250 atetubouのzetubou
ユーザー 0w10w1
提出日時 2016-11-26 14:40:12
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 494 bytes
コンパイル時間 1,376 ms
コンパイル使用メモリ 167,384 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-05 13:38:11
合計ジャッジ時間 3,864 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
5,248 KB
testcase_01 AC 13 ms
5,248 KB
testcase_02 AC 102 ms
5,376 KB
testcase_03 AC 123 ms
5,376 KB
testcase_04 AC 110 ms
5,376 KB
testcase_05 AC 99 ms
5,376 KB
testcase_06 AC 79 ms
5,376 KB
testcase_07 AC 39 ms
5,376 KB
testcase_08 AC 94 ms
5,376 KB
testcase_09 AC 72 ms
5,376 KB
testcase_10 AC 100 ms
5,376 KB
testcase_11 AC 63 ms
5,376 KB
testcase_12 AC 95 ms
5,376 KB
testcase_13 AC 52 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 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

const string msg[] = { "ZETUBOU", "AC" };

signed main(){
  int Q; cin >> Q;
  for( int kase = 0; kase < Q; ++kase ){
    int D, X; long long T; cin >> D >> X >> T;
    double f = 0;
    int a = D + X - 1;
    int b = max( X, D - 1 );
    int c = min( X, D - 1 );
    for( int i = b + 1; i <= a; ++i )
      f += log2( i );
    for( int i = 2; i <= c; ++i )
      f -= log2( i );
    cout << msg[ f - 1e-8 <= log2( T ) ] << endl;
  }
  return 0;
}
0