結果

問題 No.250 atetubouのzetubou
ユーザー yumechiyumechi
提出日時 2016-03-11 00:57:09
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 878 bytes
コンパイル時間 3,819 ms
コンパイル使用メモリ 74,492 KB
実行使用メモリ 69,668 KB
最終ジャッジ日時 2024-09-24 23:33:27
合計ジャッジ時間 12,480 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 412 ms
63,040 KB
testcase_01 AC 259 ms
56,988 KB
testcase_02 AC 495 ms
63,692 KB
testcase_03 AC 540 ms
69,668 KB
testcase_04 AC 493 ms
66,364 KB
testcase_05 AC 478 ms
59,452 KB
testcase_06 AC 449 ms
59,008 KB
testcase_07 AC 332 ms
59,044 KB
testcase_08 AC 474 ms
59,400 KB
testcase_09 AC 418 ms
62,800 KB
testcase_10 AC 473 ms
64,472 KB
testcase_11 AC 392 ms
62,672 KB
testcase_12 AC 472 ms
60,736 KB
testcase_13 AC 364 ms
59,128 KB
testcase_14 AC 141 ms
54,216 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 128 ms
54,016 KB
testcase_21 AC 125 ms
53,976 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 = n - x;
			} else {
				// x+d-1Cd-1
				n = (x+d-1);
				r = n - (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