結果

問題 No.1797 永遠のグリッド
ユーザー H3PO4H3PO4
提出日時 2022-01-01 00:16:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 441 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 45,228 KB
最終ジャッジ日時 2024-07-01 16:26:57
合計ジャッジ時間 29,928 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 532 ms
44,076 KB
testcase_01 AC 527 ms
43,688 KB
testcase_02 AC 521 ms
43,560 KB
testcase_03 AC 526 ms
43,700 KB
testcase_04 AC 523 ms
43,948 KB
testcase_05 AC 528 ms
43,552 KB
testcase_06 AC 525 ms
44,156 KB
testcase_07 AC 527 ms
43,948 KB
testcase_08 AC 529 ms
43,432 KB
testcase_09 AC 560 ms
43,820 KB
testcase_10 AC 520 ms
43,816 KB
testcase_11 AC 523 ms
43,952 KB
testcase_12 AC 548 ms
43,568 KB
testcase_13 AC 545 ms
43,568 KB
testcase_14 AC 527 ms
43,944 KB
testcase_15 AC 523 ms
43,824 KB
testcase_16 AC 621 ms
43,752 KB
testcase_17 AC 1,125 ms
43,564 KB
testcase_18 TLE -
testcase_19 AC 530 ms
43,948 KB
testcase_20 TLE -
testcase_21 AC 1,143 ms
44,072 KB
testcase_22 AC 711 ms
43,560 KB
testcase_23 TLE -
testcase_24 AC 714 ms
44,076 KB
testcase_25 AC 1,152 ms
44,068 KB
testcase_26 TLE -
testcase_27 AC 540 ms
43,820 KB
testcase_28 AC 535 ms
44,196 KB
testcase_29 AC 1,147 ms
43,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
import itertools

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

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))
    g4 = np.tile(grid, (2, 2))
    for h, w in itertools.product(range(H), range(W)):
        if tuple(g4[h:h + H, w:w + W].flatten()) in st:
            break
    else:
        st.add(tuple(grid.flatten()))
print(len(st))
0