結果

問題 No.250 atetubouのzetubou
ユーザー ntudantuda
提出日時 2024-11-27 21:51:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 168 ms / 5,000 ms
コード長 422 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 77,056 KB
最終ジャッジ日時 2024-11-27 21:51:12
合計ジャッジ時間 4,171 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
70,784 KB
testcase_01 AC 65 ms
66,304 KB
testcase_02 AC 86 ms
73,728 KB
testcase_03 AC 95 ms
76,032 KB
testcase_04 AC 92 ms
73,344 KB
testcase_05 AC 92 ms
75,904 KB
testcase_06 AC 83 ms
73,600 KB
testcase_07 AC 71 ms
68,352 KB
testcase_08 AC 85 ms
73,088 KB
testcase_09 AC 78 ms
71,168 KB
testcase_10 AC 85 ms
73,600 KB
testcase_11 AC 77 ms
70,528 KB
testcase_12 AC 85 ms
73,344 KB
testcase_13 AC 90 ms
69,760 KB
testcase_14 AC 42 ms
51,840 KB
testcase_15 AC 135 ms
76,800 KB
testcase_16 AC 110 ms
76,288 KB
testcase_17 AC 133 ms
76,416 KB
testcase_18 AC 133 ms
76,672 KB
testcase_19 AC 168 ms
77,056 KB
testcase_20 AC 38 ms
51,712 KB
testcase_21 AC 37 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for j in range(int(input())):
    d, x, t = map(int, input().split())
    if d == 1:
        if 1 <= t:
            print("AC")
        else:
            print("ZETUBOU")
        continue
    x2 = min(x, d - 1)
    tmp = 1
    for i in range(x2):
        tmp *= (x + d - 1 - i)
        if i < x2:
            tmp //= (i + 1)
        if tmp > t:
            print("ZETUBOU")
            break
    else:
        print("AC")
0