結果

問題 No.250 atetubouのzetubou
ユーザー yumechiyumechi
提出日時 2016-03-11 01:14:12
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 868 bytes
コンパイル時間 2,206 ms
コンパイル使用メモリ 74,404 KB
実行使用メモリ 60,096 KB
最終ジャッジ日時 2024-09-24 23:34:36
合計ジャッジ時間 12,171 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 397 ms
59,012 KB
testcase_01 AC 254 ms
57,012 KB
testcase_02 AC 456 ms
60,096 KB
testcase_03 AC 500 ms
59,404 KB
testcase_04 AC 441 ms
59,104 KB
testcase_05 AC 458 ms
59,016 KB
testcase_06 AC 429 ms
59,260 KB
testcase_07 AC 326 ms
58,864 KB
testcase_08 AC 477 ms
59,108 KB
testcase_09 AC 400 ms
59,412 KB
testcase_10 AC 467 ms
59,544 KB
testcase_11 AC 377 ms
58,512 KB
testcase_12 AC 457 ms
59,112 KB
testcase_13 AC 343 ms
58,040 KB
testcase_14 AC 139 ms
53,948 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 111 ms
52,912 KB
testcase_21 AC 110 ms
54,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	
	private Scanner sc = new Scanner(System.in);
	
	public static void main(String[] args) {
		Main m = new Main();
		m.main();
	}
	
	public void main() {
		for(int q = sc.nextInt(); q > 0; q--) {
			int d = sc.nextInt();
			int x = sc.nextInt();
			long t = sc.nextLong();

			int n, r;
			if(d > x) {
				// x+d-1Cx
				n = (x+d-1);
				r = x;
			} else {
				// x+d-1Cd-1
				n = (x+d-1);
				r = d-1;
			}

			// System.out.println("N:" + n + "R:" + r);
			double tn = 1.;
			boolean flag = true;
			for(int i = r; i > 0 && flag; i--) {
				tn *= n - (r - i);
				tn /= i;
				flag = tn <= 10000000000000000d;
				flag = tn <= t;
				// System.out.println("TN:" + tn + " " + (n - (r - i)));
			}

			// System.out.println(q + ":" + (flag ? "AC" : "ZETUBOU"));
			System.out.println((flag ? "AC" : "ZETUBOU"));
		}
	}
}
0