結果

問題 No.250 atetubouのzetubou
ユーザー ntudantuda
提出日時 2024-11-27 21:53:32
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 304 bytes
コンパイル時間 662 ms
コンパイル使用メモリ 81,408 KB
実行使用メモリ 76,928 KB
最終ジャッジ日時 2024-11-27 21:53:37
合計ジャッジ時間 3,905 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
70,784 KB
testcase_01 AC 72 ms
66,048 KB
testcase_02 AC 98 ms
73,344 KB
testcase_03 AC 105 ms
76,032 KB
testcase_04 AC 98 ms
73,344 KB
testcase_05 AC 102 ms
75,904 KB
testcase_06 AC 92 ms
72,832 KB
testcase_07 AC 81 ms
67,840 KB
testcase_08 AC 95 ms
72,960 KB
testcase_09 AC 90 ms
71,168 KB
testcase_10 AC 100 ms
73,728 KB
testcase_11 AC 87 ms
70,400 KB
testcase_12 AC 95 ms
72,832 KB
testcase_13 AC 84 ms
69,120 KB
testcase_14 AC 44 ms
51,712 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 42 ms
51,456 KB
testcase_21 AC 41 ms
51,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for j in range(int(input())):
    d, x, t = map(int, input().split())
    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