結果

問題 No.250 atetubouのzetubou
ユーザー scachescache
提出日時 2015-10-20 18:34:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 399 ms / 5,000 ms
コード長 996 bytes
コンパイル時間 1,997 ms
コンパイル使用メモリ 78,304 KB
実行使用メモリ 128,220 KB
最終ジャッジ日時 2024-07-22 11:02:00
合計ジャッジ時間 10,904 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 346 ms
127,380 KB
testcase_01 AC 293 ms
126,500 KB
testcase_02 AC 383 ms
127,780 KB
testcase_03 AC 393 ms
128,004 KB
testcase_04 AC 377 ms
127,316 KB
testcase_05 AC 391 ms
127,716 KB
testcase_06 AC 357 ms
127,516 KB
testcase_07 AC 316 ms
127,120 KB
testcase_08 AC 376 ms
127,336 KB
testcase_09 AC 352 ms
127,520 KB
testcase_10 AC 385 ms
127,324 KB
testcase_11 AC 339 ms
127,332 KB
testcase_12 AC 378 ms
128,220 KB
testcase_13 AC 334 ms
127,352 KB
testcase_14 AC 213 ms
125,148 KB
testcase_15 AC 398 ms
127,856 KB
testcase_16 AC 394 ms
127,644 KB
testcase_17 AC 394 ms
127,504 KB
testcase_18 AC 397 ms
127,700 KB
testcase_19 AC 399 ms
127,252 KB
testcase_20 AC 220 ms
124,996 KB
testcase_21 AC 213 ms
124,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter;
import java.util.Scanner;

public class Main {

    public static void main(String[] args) {
        new Main();
    }

    public Main() {
        int n = dp.length;
        dp[0][0] = 1;
        for(int i=1;i<n;i++) {
            dp[i][0] = 1;
            for (int j = 1; j <= i; j++)
                dp[i][j] = Math.min(dp[i - 1][j] + dp[i - 1][j - 1], 1L << 61);
        }

        Scanner sc = new Scanner(System.in);
        PrintWriter pw = new PrintWriter(System.out);
        int q = sc.nextInt();
        for(int i=0;i<q;i++){
            D = Integer.parseInt(sc.next());
            X = Integer.parseInt(sc.next());
            T = Long.parseLong(sc.next());
            pw.println(solve());
        }
        pw.flush();

    }

    long[][] dp = new long[3010][3010];
    int D;
    int X;
    long T;
    private String solve(){
        long c = dp[X+D-1][D-1];
        if(c>T)
            return "ZETUBOU";
        else
            return "AC";
    }
}
0