結果
問題 | No.250 atetubouのzetubou |
ユーザー | t8m8⛄️ |
提出日時 | 2015-08-15 15:50:51 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 3,085 ms / 5,000 ms |
コード長 | 1,158 bytes |
コンパイル時間 | 3,679 ms |
コンパイル使用メモリ | 80,776 KB |
実行使用メモリ | 112,732 KB |
最終ジャッジ日時 | 2024-07-18 09:41:55 |
合計ジャッジ時間 | 43,643 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2,162 ms
98,072 KB |
testcase_01 | AC | 754 ms
63,124 KB |
testcase_02 | AC | 2,655 ms
108,296 KB |
testcase_03 | AC | 3,085 ms
112,732 KB |
testcase_04 | AC | 2,595 ms
108,100 KB |
testcase_05 | AC | 2,583 ms
110,996 KB |
testcase_06 | AC | 2,246 ms
98,900 KB |
testcase_07 | AC | 1,518 ms
73,460 KB |
testcase_08 | AC | 2,482 ms
107,448 KB |
testcase_09 | AC | 2,869 ms
106,444 KB |
testcase_10 | AC | 2,604 ms
109,152 KB |
testcase_11 | AC | 2,310 ms
98,992 KB |
testcase_12 | AC | 2,728 ms
106,300 KB |
testcase_13 | AC | 1,668 ms
79,420 KB |
testcase_14 | AC | 244 ms
61,900 KB |
testcase_15 | AC | 586 ms
63,980 KB |
testcase_16 | AC | 591 ms
63,876 KB |
testcase_17 | AC | 552 ms
64,524 KB |
testcase_18 | AC | 572 ms
64,492 KB |
testcase_19 | AC | 565 ms
64,320 KB |
testcase_20 | AC | 161 ms
61,324 KB |
testcase_21 | AC | 147 ms
60,776 KB |
ソースコード
import java.util.*; import java.io.*; import java.awt.geom.*; import java.math.*; public class No0250 { static final Scanner in = new Scanner(System.in); static final PrintWriter out = new PrintWriter(System.out,false); static void solve() { BigInteger[] fact = createFactorialArray(0,3001); int q = in.nextInt(); while (q-- > 0) { int d = in.nextInt(); int x = in.nextInt(); long t = in.nextLong(); out.println(fact[d+x-1].divide(fact[d-1]).divide(fact[x]).compareTo(BigInteger.valueOf(t)) <= 0 ? "AC" : "ZETUBOU"); } } public static BigInteger[] createFactorialArray(int offset, int n) { if (offset >= n || n <= 0) return null; BigInteger[] ret = new BigInteger[n]; ret[0] = ret[1] = BigInteger.ONE; for (int i=2; i<n; i++) ret[i] = ret[i-1].multiply(BigInteger.valueOf(i)); return Arrays.copyOfRange(ret,offset,n); } public static void main(String[] args) { long start = System.currentTimeMillis(); solve(); out.flush(); long end = System.currentTimeMillis(); //trace(end-start + "ms"); in.close(); out.close(); } static void trace(Object... o) { System.out.println(Arrays.deepToString(o));} }