結果

問題 No.250 atetubouのzetubou
ユーザー takeya_okinotakeya_okino
提出日時 2017-06-14 18:00:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 675 ms / 5,000 ms
コード長 1,105 bytes
コンパイル時間 2,127 ms
コンパイル使用メモリ 77,540 KB
実行使用メモリ 113,116 KB
最終ジャッジ日時 2024-09-24 22:59:51
合計ジャッジ時間 16,685 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 602 ms
109,996 KB
testcase_01 AC 518 ms
93,176 KB
testcase_02 AC 647 ms
110,412 KB
testcase_03 AC 654 ms
110,164 KB
testcase_04 AC 648 ms
110,228 KB
testcase_05 AC 663 ms
110,180 KB
testcase_06 AC 654 ms
110,296 KB
testcase_07 AC 574 ms
110,248 KB
testcase_08 AC 637 ms
109,708 KB
testcase_09 AC 613 ms
110,068 KB
testcase_10 AC 635 ms
110,332 KB
testcase_11 AC 593 ms
110,244 KB
testcase_12 AC 671 ms
110,496 KB
testcase_13 AC 596 ms
110,220 KB
testcase_14 AC 307 ms
88,392 KB
testcase_15 AC 673 ms
110,336 KB
testcase_16 AC 675 ms
110,032 KB
testcase_17 AC 646 ms
111,136 KB
testcase_18 AC 653 ms
111,800 KB
testcase_19 AC 650 ms
113,116 KB
testcase_20 AC 294 ms
88,752 KB
testcase_21 AC 280 ms
87,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    // dp[i][j]はi個の変数(≧0)の和がj以下となるような場合の数(10^15+1以上の場合は10^15+1とする)
    long[][] dp = new long[1500][1501];
    // sum[i][j] = dp[i][0] +...+dp[i][j]
    long[][] sum = new long[1500][1501];
    for(int j = 0; j < 1501; j++) {
      dp[0][j] = 1;
      sum[0][j] = j + 1;
    }
    for(int i = 1; i < 1500; i++) {
      dp[i][0] = 1;
      sum[i][0] = 1;
      for(int j = 1; j < 1501; j++) {
        dp[i][j] = sum[i - 1][j];
        if(sum[i][j - 1] + dp[i][j] >= (long)Math.pow(10, 15) + 1) {
          sum[i][j] = (long)Math.pow(10, 15) + 1;
        } else {
          sum[i][j] = sum[i][j - 1] + dp[i][j];
        }
      }
    }
    int Q = sc.nextInt();
    for(int i = 0; i < Q; i++) {
      int d = sc.nextInt();
      int x = sc.nextInt();
      long t = sc.nextLong();
      if(dp[d - 1][x] <= t) {
        System.out.println("AC");
      } else {
        System.out.println("ZETUBOU");
      }
    }
  }
}
0