結果

問題 No.250 atetubouのzetubou
ユーザー flippergoflippergo
提出日時 2024-09-17 22:02:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,557 ms / 5,000 ms
コード長 356 bytes
コンパイル時間 136 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 486,144 KB
最終ジャッジ日時 2024-09-17 22:03:07
合計ジャッジ時間 34,387 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,393 ms
486,144 KB
testcase_01 AC 1,367 ms
486,016 KB
testcase_02 AC 1,422 ms
486,144 KB
testcase_03 AC 1,411 ms
485,888 KB
testcase_04 AC 1,424 ms
485,888 KB
testcase_05 AC 1,401 ms
485,888 KB
testcase_06 AC 1,457 ms
486,144 KB
testcase_07 AC 1,435 ms
485,888 KB
testcase_08 AC 1,448 ms
485,888 KB
testcase_09 AC 1,438 ms
485,888 KB
testcase_10 AC 1,491 ms
486,144 KB
testcase_11 AC 1,432 ms
486,016 KB
testcase_12 AC 1,430 ms
485,888 KB
testcase_13 AC 1,418 ms
485,888 KB
testcase_14 AC 1,378 ms
486,016 KB
testcase_15 AC 1,427 ms
485,888 KB
testcase_16 AC 1,516 ms
486,144 KB
testcase_17 AC 1,449 ms
486,016 KB
testcase_18 AC 1,434 ms
485,888 KB
testcase_19 AC 1,429 ms
486,016 KB
testcase_20 AC 1,384 ms
485,888 KB
testcase_21 AC 1,557 ms
485,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

imax = 1500
dp = [[1 for _ in range(imax+1)] for _ in range(imax+1)]
for d in range(2,imax+1):
    dp[d][1] = d
for d in range(2,imax+1):
    for x in range(2,imax+1):
        dp[d][x] = dp[d-1][x]+dp[d][x-1]
Q = int(input())
for _ in range(Q):
    d,x,t = map(int,input().split())
    if dp[d][x]<=t:
        print("AC")
    else:
        print("ZETUBOU")
0