結果
| 問題 | No.3722 Blended Taste |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2026-09-19 17:15:51 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
WA
不安定
|
| 実行時間 | - |
| コード長 | 1,262 bytes |
| 記録 | |
| コンパイル時間 | 283 ms |
| コンパイル使用メモリ | 82,680 KB |
| 実行使用メモリ | 107,008 KB |
| 最終ジャッジ日時 | 2026-09-19 17:16:06 |
| 合計ジャッジ時間 | 5,999 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 29 WA * 12 |
ソースコード
# https://github.com/tyuyu-62/cp-library
from collections import deque, defaultdict
from itertools import permutations, product
from bisect import bisect_left, bisect_right
from heapq import heappush, heappop
from random import randint, shuffle
from time import perf_counter as pc
def II(): return int(input())
def LI(dec=0): return [int(x) - dec for x in input().split()]
def SI(): return input()
def LS(): return list(input().split())
mod = 998244353
inf = 2002002002002002002
import sys
sys.setrecursionlimit(10 ** 6)
input = lambda: sys.stdin.readline().rstrip()
_buf = []
def print(*args, sep=" "): _buf.append(sep.join(map(str, args)))
def debug(*args):
if DEBUG: sys.stdout.write(" ".join(map(str, args)) + "\n")
DEBUG = True
def solve():
N, M, K = LI()
A = [[0] * N for _ in range(N)]
x = 1
for i in range(N):
for j in range(N):
A[i][j] = x
x += 1
if x == M + 1:
x = 1
for i in range(N):
if i & 1:
A[i].reverse()
A[i][N // 2:] = A[i][N // 2:][::-1]
for i in range(N):
print(*A[i])
return
if __name__ == "__main__":
T = 1
# T = II()
for _ in range(T):
solve()
sys.stdout.write("\n".join(_buf) + "\n")