結果
問題 | No.1797 永遠のグリッド |
ユーザー | H3PO4 |
提出日時 | 2022-01-01 00:25:41 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 544 bytes |
コンパイル時間 | 200 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 51,152 KB |
最終ジャッジ日時 | 2024-10-09 10:21:01 |
合計ジャッジ時間 | 16,964 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 504 ms
51,152 KB |
testcase_01 | AC | 506 ms
44,588 KB |
testcase_02 | AC | 507 ms
44,072 KB |
testcase_03 | AC | 513 ms
44,332 KB |
testcase_04 | AC | 510 ms
44,460 KB |
testcase_05 | AC | 510 ms
44,088 KB |
testcase_06 | AC | 505 ms
44,720 KB |
testcase_07 | AC | 508 ms
44,176 KB |
testcase_08 | AC | 508 ms
44,200 KB |
testcase_09 | AC | 609 ms
44,460 KB |
testcase_10 | AC | 504 ms
43,952 KB |
testcase_11 | AC | 516 ms
44,176 KB |
testcase_12 | AC | 546 ms
44,708 KB |
testcase_13 | AC | 559 ms
44,344 KB |
testcase_14 | AC | 508 ms
44,204 KB |
testcase_15 | AC | 505 ms
44,080 KB |
testcase_16 | AC | 520 ms
44,592 KB |
testcase_17 | AC | 1,979 ms
44,072 KB |
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 | -- | - |
ソースコード
import numpy as np import itertools H, W, K = map(int, input().split()) pow_table = (K ** np.arange(H * W, dtype=np.int32)).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)) g4 = np.tile(grid, (2, 2)) for h, w in itertools.product(range(H), range(W)): if pow_hash(g4[h:h + H, w:w + W].data) in st: break else: st.add(pow_hash(grid)) print(len(st))