結果

問題 No.1797 永遠のグリッド
ユーザー H3PO4H3PO4
提出日時 2022-01-01 01:08:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 506 bytes
コンパイル時間 97 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 51,036 KB
最終ジャッジ日時 2024-10-09 11:10:24
合計ジャッジ時間 15,923 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 505 ms
49,456 KB
testcase_01 AC 503 ms
43,956 KB
testcase_02 AC 506 ms
44,328 KB
testcase_03 AC 507 ms
43,952 KB
testcase_04 AC 505 ms
43,948 KB
testcase_05 AC 507 ms
44,240 KB
testcase_06 AC 508 ms
44,208 KB
testcase_07 AC 505 ms
44,204 KB
testcase_08 AC 508 ms
44,200 KB
testcase_09 AC 632 ms
44,080 KB
testcase_10 AC 517 ms
43,956 KB
testcase_11 AC 507 ms
44,472 KB
testcase_12 AC 562 ms
44,080 KB
testcase_13 AC 565 ms
44,208 KB
testcase_14 AC 503 ms
44,208 KB
testcase_15 AC 517 ms
44,204 KB
testcase_16 AC 515 ms
43,948 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
import itertools

H, W, K = map(int, input().split())

pow_table = (K ** np.arange(H * W)).reshape((H, W))
pow_hash = lambda x: np.sum(x * pow_table)

st = set()
for t in itertools.product(range(K), repeat=H * W):
    if len(set(t)) != K:
        continue
    grid = np.array(t).reshape((H, W))
    for h, w in itertools.product(range(H), range(W)):
        if pow_hash(np.roll(grid, (h, w), axis=(0, 1))) in st:
            break
    else:
        st.add(pow_hash(grid))
print(len(st))
0