結果

問題 No.1797 永遠のグリッド
ユーザー H3PO4H3PO4
提出日時 2022-01-01 01:03:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 283 ms / 2,000 ms
コード長 867 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 77,060 KB
最終ジャッジ日時 2024-10-09 11:06:16
合計ジャッジ時間 3,524 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,332 KB
testcase_01 AC 37 ms
53,080 KB
testcase_02 AC 38 ms
52,960 KB
testcase_03 AC 37 ms
52,684 KB
testcase_04 AC 37 ms
53,560 KB
testcase_05 AC 38 ms
52,752 KB
testcase_06 AC 38 ms
53,012 KB
testcase_07 AC 38 ms
52,664 KB
testcase_08 AC 41 ms
54,372 KB
testcase_09 AC 62 ms
69,052 KB
testcase_10 AC 39 ms
52,524 KB
testcase_11 AC 40 ms
54,024 KB
testcase_12 AC 67 ms
71,228 KB
testcase_13 AC 64 ms
70,288 KB
testcase_14 AC 38 ms
52,752 KB
testcase_15 AC 37 ms
53,148 KB
testcase_16 AC 42 ms
59,652 KB
testcase_17 AC 101 ms
76,524 KB
testcase_18 AC 130 ms
76,272 KB
testcase_19 AC 39 ms
52,996 KB
testcase_20 AC 179 ms
76,620 KB
testcase_21 AC 115 ms
76,484 KB
testcase_22 AC 98 ms
76,764 KB
testcase_23 AC 227 ms
77,060 KB
testcase_24 AC 87 ms
76,472 KB
testcase_25 AC 119 ms
76,228 KB
testcase_26 AC 283 ms
76,876 KB
testcase_27 AC 39 ms
54,436 KB
testcase_28 AC 39 ms
52,464 KB
testcase_29 AC 115 ms
76,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

st = set()
for b in range(K ** (H * W)):
    ct = set((b // (K ** i)) % K for i in range(H * W))
    if len(ct) != K:
        continue

    bh = b
    flag = False
    for h in range(H):
        bw = bh
        for w in range(W):
            # print(h, w, bw)
            # print(np.array([(bw // (K ** i)) % K for i in range(H * W)]).reshape((H, W)))
            if bw in st:
                flag = True
                break

            bw *= K
            for h2 in range(H):
                m = (bw // (K ** ((h2 + 1) * W))) % K
                bw += m * (K ** (h2 * W) - K ** ((h2 + 1) * W))

        if flag:
            break
        bh *= (K ** W)
        for w2 in range(W):
            m = (bh // (K ** (H * W + w2))) % K
            bh += m * (K ** w2 - K ** (H * W + w2))

    else:
        st.add(b)

print(len(st))
0