結果

問題 No.1822 Keima of Shogi
ユーザー nariyelnariyel
提出日時 2022-01-29 04:30:42
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 310 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 17,824 KB
最終ジャッジ日時 2024-06-09 23:26:59
合計ジャッジ時間 3,934 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
17,824 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 TLE -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10 ** 8)
N = int(input())
vu = []
res = 0


def dfs(h, w):
    global res
    if h < 0 or w < 0 or w >= N:
        return
    if (h,w) in vu:
        return

    vu.append((h,w))
    res += 1
    for j in [1,-1]:
        dfs(h-2, w+j)

dfs(N-1, (N-1)//2)
#print(vu)
print(res)
0