結果
問題 | No.250 atetubouのzetubou |
ユーザー | Grenache |
提出日時 | 2015-07-24 23:33:21 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,348 bytes |
コンパイル時間 | 3,977 ms |
コンパイル使用メモリ | 78,496 KB |
実行使用メモリ | 117,996 KB |
最終ジャッジ日時 | 2024-07-16 00:20:39 |
合計ジャッジ時間 | 30,385 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 402 ms
105,624 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 143 ms
88,040 KB |
testcase_15 | AC | 331 ms
93,464 KB |
testcase_16 | AC | 318 ms
93,800 KB |
testcase_17 | AC | 322 ms
93,568 KB |
testcase_18 | AC | 331 ms
95,516 KB |
testcase_19 | AC | 331 ms
93,796 KB |
testcase_20 | AC | 98 ms
83,996 KB |
testcase_21 | AC | 98 ms
83,744 KB |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.util.Arrays; import java.util.Iterator; public class Main_yukicoder250 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); preCombiLong(3000); int q = sc.nextInt(); for (int i = 0; i < q; i++) { int d = sc.nextInt(); int x = sc.nextInt(); long t = sc.nextLong(); try { if (combinationLong(x + d - 1, x) <= t) { System.out.println("AC"); } else { System.out.println("ZETUBOU"); } } catch (RuntimeException e) { System.out.println("ZETUBOU"); } } sc.close(); } private static long[][] cacheLong; private static void preCombiLong(int size) { // cache size need size * size * 4. // size : ~3000 cacheLong = new long[size + 1][]; for (int i = 0; i <= size; i++) { cacheLong[i] = new long[i + 1]; cacheLong[i][0] = 1; cacheLong[i][i] = 1; } } private static long combinationLong(int n, int r) { r = Math.min(n - r, r); if (cacheLong[n][r] == 0) { cacheLong[n][r] = combinationLong(n - 1, r) + combinationLong(n - 1, r - 1); if (cacheLong[n][r] < 0) { throw new RuntimeException("Long Overflow!"); } } return cacheLong[n][r]; } @SuppressWarnings("unused") private static class Scanner { BufferedReader br; Iterator<String> it; Scanner (InputStream in) { br = new BufferedReader(new InputStreamReader(in)); } String next() throws RuntimeException { try { if (it == null || !it.hasNext()) { it = Arrays.asList(br.readLine().split(" ")).iterator(); } return it.next(); } catch (IOException e) { throw new IllegalStateException(); } } int nextInt() throws RuntimeException { return Integer.parseInt(next()); } long nextLong() throws RuntimeException { return Long.parseLong(next()); } float nextFloat() throws RuntimeException { return Float.parseFloat(next()); } double nextDouble() throws RuntimeException { return Double.parseDouble(next()); } void close() { try { br.close(); } catch (IOException e) { // throw new IllegalStateException(); } } } }