結果

問題 No.250 atetubouのzetubou
ユーザー sggkshiosggkshio
提出日時 2019-01-10 08:03:31
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 73 ms / 5,000 ms
コード長 746 bytes
コンパイル時間 776 ms
コンパイル使用メモリ 85,964 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-24 01:08:32
合計ジャッジ時間 2,264 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES
#define _CRT_SECURE_NO_WARNINGS
#include<stdio.h>
#include<string>
#include<iostream>
#include<iostream>
#include<cctype>
#include<cstdio>
#include<vector>
#include<stack>
#include<queue>
#include <algorithm>
#include<math.h>
#include<set>
#include<map>
#include <sstream>
#include<iomanip>
#include <ctype.h>
#include <fstream>
#include <cassert>
//#include <bits/stdc++.h>
using namespace std;

//#include<bits/stdc++.h>


	
int main() {
	int n;
	cin >> n;
	while (n--) {
		long long int a, b, c;
		cin >> a >> b >> c;
		long long int ans = 1;
		for (int i =1; i < a; i++) {
			ans = ans*(b + i) / i;
			if (ans > c)break;
		}
		
		if (ans <= c)cout << "AC" << endl;
		else cout << "ZETUBOU" << endl;

	}

	return 0;
}
0