結果

問題 No.250 atetubouのzetubou
ユーザー kenji_shioyakenji_shioya
提出日時 2016-06-25 06:40:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 502 ms / 5,000 ms
コード長 653 bytes
コンパイル時間 3,483 ms
コンパイル使用メモリ 75,076 KB
実行使用メモリ 47,940 KB
最終ジャッジ日時 2024-10-11 21:28:23
合計ジャッジ時間 13,509 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 408 ms
47,772 KB
testcase_01 AC 267 ms
45,156 KB
testcase_02 AC 484 ms
47,576 KB
testcase_03 AC 496 ms
47,804 KB
testcase_04 AC 473 ms
47,828 KB
testcase_05 AC 461 ms
47,492 KB
testcase_06 AC 425 ms
47,568 KB
testcase_07 AC 335 ms
47,756 KB
testcase_08 AC 475 ms
47,868 KB
testcase_09 AC 422 ms
47,940 KB
testcase_10 AC 462 ms
47,656 KB
testcase_11 AC 374 ms
46,788 KB
testcase_12 AC 461 ms
47,552 KB
testcase_13 AC 357 ms
47,724 KB
testcase_14 AC 142 ms
41,648 KB
testcase_15 AC 502 ms
47,736 KB
testcase_16 AC 495 ms
47,432 KB
testcase_17 AC 493 ms
47,480 KB
testcase_18 AC 461 ms
47,844 KB
testcase_19 AC 472 ms
47,620 KB
testcase_20 AC 124 ms
41,036 KB
testcase_21 AC 122 ms
41,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Exercise120{
  public static void main (String[] args){

    Scanner sc = new Scanner(System.in);

    int n = sc.nextInt();
    for(int i = 0; i < n; i++){
      int d = sc.nextInt();
      int x = sc.nextInt();
      long t = sc.nextLong();
      int b = x + d - 1;
      long cal = 1;
      int min = Math.min(x, d - 1);
      for(int j = 0; j < min; j++){
        cal *= (b - j);
        cal /= (j + 1);
        if(cal > (long)Math.pow(10, 16)){
          break;
        }
      }
      if(cal > t || cal < 1){
        System.out.println("ZETUBOU");
      }else{
        System.out.println("AC");
      }
    }
	}
}
0