結果
問題 | No.923 オセロきりきざむたん |
ユーザー | nadeshino |
提出日時 | 2019-11-11 01:06:39 |
言語 | Nim (2.0.2) |
結果 |
CE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,618 bytes |
コンパイル時間 | 844 ms |
コンパイル使用メモリ | 70,508 KB |
最終ジャッジ日時 | 2024-11-14 21:50:19 |
合計ジャッジ時間 | 2,138 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
コンパイルメッセージ
/home/judge/data/code/Main.nim(1, 19) Warning: Use the new 'sugar' module instead; future is deprecated [Deprecated] stack trace: (most recent call last) Main.nim(6, 9) unpack /home/judge/data/code/Main.nim(28, 19) template/generic instantiation of `input` from here /home/judge/data/code/Main.nim(12, 44) template/generic instantiation of `unpack` from here /home/judge/data/code/Main.nim(6, 9) Error: index 1 not in 0 .. 0
ソースコード
import algorithm, future, macros, math, sequtils, sets, strutils, tables macro unpack(rhs: seq, cnt: static[int]): auto = let v = genSym(); result = quote do:(let `v` = `rhs`;()) if NimMinor <= 17: for i in 0..<cnt: result[0][1].add(quote do:`v`[`i`]) else: for i in 0..<cnt: result[1].add(quote do:`v`[`i`]) template input(T: typedesc, cnt: Natural = 1): untyped = let line = stdin.readLine.split(" ") when T is int: line.map(parseInt).unpack(cnt) elif T is float: line.map(parseFloat).unpack(cnt) elif T is string: line.unpack(cnt) elif T is char: line.mapIt(it[0]).unpack(cnt) elif T is seq[int]: line.map(parseint) elif T is seq[float]: line.map(parseFloat) elif T is seq[string]: line elif T is seq[char]: line.mapIt(it[0]) proc `<?=`(n: var SomeNumber, m: SomeNumber) = n = min(n, m) proc `>?=`(n: var SomeNumber, m: SomeNumber) = n = max(n, m) proc newSeq2[T](n1, n2: Natural): seq[seq[T]] = newSeqWith(n1, newSeq[T](n2)) proc newSeq3[T](n1, n2, n3: Natural): seq[seq[seq[T]]] = newSeqWith(n1, newSeqWith(n2, newSeq[T](n3))) # -------------------------------------------------- # var (H, W) = input(int, 2) var A = newseq[string](H + 1) for i in 1 .. H: A[i] = "#" & input(string) var tate, yoko = false for i in 1 .. H: var allSame = true for j in 1 .. W - 1: if A[i][j] != A[i][j + 1]: allSame = false if allSame: yoko = true for j in 1 .. W: var allSame = true for i in 1 .. H - 1: if A[i][j] != A[i + 1][j]: allSame = false if allSame: tate = true if yoko and tate: echo "NO" else: echo "YES"