結果

問題 No.250 atetubouのzetubou
ユーザー rlangevinrlangevin
提出日時 2023-01-20 08:56:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 248 ms / 5,000 ms
コード長 313 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 82,916 KB
実行使用メモリ 147,888 KB
最終ジャッジ日時 2024-06-23 00:17:34
合計ジャッジ時間 7,356 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 237 ms
147,368 KB
testcase_01 AC 196 ms
137,960 KB
testcase_02 AC 238 ms
147,568 KB
testcase_03 AC 241 ms
147,080 KB
testcase_04 AC 237 ms
147,412 KB
testcase_05 AC 243 ms
147,364 KB
testcase_06 AC 236 ms
147,404 KB
testcase_07 AC 234 ms
147,228 KB
testcase_08 AC 241 ms
147,728 KB
testcase_09 AC 239 ms
147,420 KB
testcase_10 AC 244 ms
147,268 KB
testcase_11 AC 234 ms
147,564 KB
testcase_12 AC 241 ms
147,392 KB
testcase_13 AC 232 ms
147,496 KB
testcase_14 AC 178 ms
137,676 KB
testcase_15 AC 248 ms
147,888 KB
testcase_16 AC 242 ms
147,488 KB
testcase_17 AC 243 ms
147,396 KB
testcase_18 AC 247 ms
147,444 KB
testcase_19 AC 248 ms
147,436 KB
testcase_20 AC 177 ms
137,884 KB
testcase_21 AC 178 ms
137,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

Q = int(input())
M = 3005
comb = [[1] * M for i in range(M)]
inf = 10 ** 18
for i in range(1, M):
    for j in range(1, i):
        comb[i][j] = min(inf, comb[i-1][j] + comb[i-1][j-1])

for _ in range(Q):
    D, X, T = map(int, input().split())
    print("AC") if comb[X + D - 1][D - 1] <= T else print("ZETUBOU")
0