結果

問題 No.223 1マス指定の魔方陣
ユーザー maspymaspy
提出日時 2020-03-28 13:59:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 484 ms / 5,000 ms
コード長 1,275 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 44,640 KB
最終ジャッジ日時 2024-06-10 17:20:10
合計ジャッジ時間 26,037 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 449 ms
44,384 KB
testcase_01 AC 454 ms
44,128 KB
testcase_02 AC 483 ms
44,252 KB
testcase_03 AC 462 ms
44,252 KB
testcase_04 AC 469 ms
44,508 KB
testcase_05 AC 481 ms
44,508 KB
testcase_06 AC 467 ms
43,996 KB
testcase_07 AC 471 ms
43,872 KB
testcase_08 AC 483 ms
44,392 KB
testcase_09 AC 476 ms
44,256 KB
testcase_10 AC 478 ms
44,000 KB
testcase_11 AC 455 ms
44,256 KB
testcase_12 AC 475 ms
43,996 KB
testcase_13 AC 471 ms
44,512 KB
testcase_14 AC 450 ms
43,868 KB
testcase_15 AC 456 ms
44,000 KB
testcase_16 AC 449 ms
43,996 KB
testcase_17 AC 446 ms
44,380 KB
testcase_18 AC 461 ms
44,376 KB
testcase_19 AC 456 ms
44,600 KB
testcase_20 AC 455 ms
43,868 KB
testcase_21 AC 454 ms
44,504 KB
testcase_22 AC 455 ms
44,516 KB
testcase_23 AC 479 ms
44,004 KB
testcase_24 AC 472 ms
44,256 KB
testcase_25 AC 469 ms
44,380 KB
testcase_26 AC 480 ms
44,000 KB
testcase_27 AC 484 ms
44,384 KB
testcase_28 AC 471 ms
44,380 KB
testcase_29 AC 463 ms
44,248 KB
testcase_30 AC 464 ms
43,996 KB
testcase_31 AC 482 ms
44,256 KB
testcase_32 AC 470 ms
44,404 KB
testcase_33 AC 457 ms
44,252 KB
testcase_34 AC 454 ms
44,384 KB
testcase_35 AC 474 ms
44,640 KB
testcase_36 AC 449 ms
44,472 KB
testcase_37 AC 472 ms
44,636 KB
testcase_38 AC 451 ms
44,000 KB
testcase_39 AC 449 ms
44,252 KB
testcase_40 AC 447 ms
44,380 KB
testcase_41 AC 458 ms
44,252 KB
testcase_42 AC 455 ms
43,968 KB
testcase_43 AC 467 ms
44,252 KB
testcase_44 AC 462 ms
44,120 KB
testcase_45 AC 459 ms
44,384 KB
testcase_46 AC 443 ms
44,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/ python3.8
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
import numpy as np


class Fq(int):
    deg = 2
    irr_poly = 7

    @classmethod
    def set_degree(cls, d):
        cls.deg = d
        cls.irr_poly = [1, 2, 7, 11, 19][d]

    @classmethod
    def iter_all(cls):
        return (Fq(i) for i in range(1 << cls.deg))

    def __add__(self, other):
        return Fq(self ^ other)

    def __mul__(self, other):
        ret = 0
        d = self.__class__.deg
        p = self.__class__.irr_poly
        for i in range(d):
            if (other >> i) & 1:
                ret ^= self << i
        for i in range(d - 2, -1, -1):
            if ret & (1 << d + i):
                ret ^= p << i
        return Fq(ret)


N, X, Y, Z = map(int, read().split())
X, Y = Y - 1, X - 1
Z -= 1

Fq.set_degree(N.bit_length() - 1)
nums = np.array(list(Fq.iter_all()), dtype=object)
latine_1, latine_2 = (nums[None, :, None] + nums[2:4][:, None, None] * nums[None, None, :]).astype(int)
latine_1 += (Z // N) - latine_1[X, Y]
latine_1 %= N
latine_2 += (Z % N) - latine_2[X, Y]
latine_2 %= N
magic_square = latine_1 * N + latine_2 + 1

print('\n'.join(' '.join(row) for row in magic_square.astype(str)))
0