verify/matrix/rotate_abc298b_test_.nim

This documentation is automatically generated by online-judge-tools/verification-helper

:warning: verify/matrix/rotate_abc298b_test_.nim

Depends on

Code

# verification-helper: PROBLEM https://atcoder.jp/contests/abc298/tasks/abc298_b
import cplib/matrix/matops
import strutils, sequtils, sugar
var n = stdin.readLine.parseInt
var a, b = collect(newSeq): (for i in 0..<n: stdin.readLine.split.map(parseInt))
for i in 0..<4:
    proc check(a, b: seq[seq[int]]): bool =
        for i in 0..<n:
            for j in 0..<n:
                if a[i][j] == 1 and b[i][j] == 0: return false
        return true
    if check(a.rotated(i), b):
        echo "Yes"
        quit()
echo "No"
Traceback (most recent call last):
  File "/home/runner/.local/lib/python3.12/site-packages/onlinejudge_verify/documentation/build.py", line 71, in _render_source_code_stat
    bundled_code = language.bundle(stat.path, basedir=basedir, options={'include_paths': [basedir]}).decode()
                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/runner/.local/lib/python3.12/site-packages/onlinejudge_verify/languages/nim.py", line 86, in bundle
    raise NotImplementedError
NotImplementedError
Back to top page