結果

問題 No.250 atetubouのzetubou
ユーザー daku9640daku9640
提出日時 2017-02-24 21:08:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,114 ms / 5,000 ms
コード長 223 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-06-10 22:33:46
合計ジャッジ時間 7,938 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
10,752 KB
testcase_01 AC 37 ms
10,752 KB
testcase_02 AC 113 ms
10,752 KB
testcase_03 AC 122 ms
10,752 KB
testcase_04 AC 105 ms
10,752 KB
testcase_05 AC 111 ms
10,880 KB
testcase_06 AC 91 ms
10,880 KB
testcase_07 AC 60 ms
10,752 KB
testcase_08 AC 108 ms
10,752 KB
testcase_09 AC 87 ms
10,880 KB
testcase_10 AC 115 ms
10,752 KB
testcase_11 AC 80 ms
10,752 KB
testcase_12 AC 107 ms
10,880 KB
testcase_13 AC 74 ms
10,880 KB
testcase_14 AC 26 ms
10,752 KB
testcase_15 AC 1,081 ms
10,752 KB
testcase_16 AC 1,093 ms
10,752 KB
testcase_17 AC 1,076 ms
10,752 KB
testcase_18 AC 1,114 ms
10,752 KB
testcase_19 AC 1,102 ms
10,752 KB
testcase_20 AC 25 ms
10,752 KB
testcase_21 AC 26 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

q = int(input())
for _ in [0] * q:
    d, x, t = [int(i) for i in input().split()]
    s = 1
    for d in range(d - 1):
        s = s * (x + 1 + d) // (d + 1)
        if s > t: break
    print("AC" if s <= t else "ZETUBOU")
0