結果

問題 No.1971 Easy Sudoku
ユーザー 8nd5t8nd5t
提出日時 2022-06-10 21:25:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 203 ms / 2,000 ms
コード長 739 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 85,504 KB
最終ジャッジ日時 2024-09-21 05:57:23
合計ジャッジ時間 3,798 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 184 ms
84,736 KB
testcase_01 AC 194 ms
85,504 KB
testcase_02 AC 168 ms
85,504 KB
testcase_03 AC 163 ms
85,376 KB
testcase_04 AC 166 ms
85,376 KB
testcase_05 AC 154 ms
84,864 KB
testcase_06 AC 156 ms
84,560 KB
testcase_07 AC 174 ms
85,504 KB
testcase_08 AC 177 ms
84,992 KB
testcase_09 AC 186 ms
85,120 KB
testcase_10 AC 203 ms
85,248 KB
testcase_11 AC 178 ms
84,992 KB
testcase_12 AC 163 ms
84,736 KB
testcase_13 AC 163 ms
85,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter,defaultdict,deque
from heapq import heappop,heappush,heapify
from bisect import bisect_left,bisect_right 
import sys,math,itertools,pprint,fractions
sys.setrecursionlimit(10**8)
mod = 998244353
INF = float('inf')
def inp(): return int(sys.stdin.readline())
def inpl(): return list(map(int, sys.stdin.readline().split()))
def inpl_1(): return list(map(lambda x:int(x)-1, sys.stdin.readline().split()))
def inplm(): return map(int, sys.stdin.readline().split())
def inpl_1m(): return map(lambda x:int(x)-1, sys.stdin.readline().split())
def err(x): print(x); exit()

n = inp()
res = [[-1]*n for _ in range(n)]
for i in range(n):
    for j in range(n):
        res[i][j] = (i+j)%n+1
for x in res:
    print(*x)
0