結果
問題 | No.8047 Riddle of Cards |
ユーザー |
![]() |
提出日時 | 2019-04-01 22:08:43 |
言語 | Nim (2.2.0) |
結果 |
CE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 988 bytes |
コンパイル時間 | 984 ms |
コンパイル使用メモリ | 80,560 KB |
最終ジャッジ日時 | 2024-11-14 21:23:44 |
合計ジャッジ時間 | 1,345 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
コンパイルメッセージ
stack trace: (most recent call last) Main.nim(6, 9) unpack /home/judge/data/code/Main.nim(25, 19) template/generic instantiation of `input` from here /home/judge/data/code/Main.nim(18, 43) template/generic instantiation of `unpack` from here /home/judge/data/code/Main.nim(6, 9) Error: index 1 not in 0 .. 0
ソースコード
import algorithm, hashes, macros, math, sequtils, sets, strutils, tables, times, unicodemacro unpack*(rhs: seq, cnt: static[int]): auto =let t = genSym(); result = quote do:(let `t` = `rhs`;())if NimMinor <= 17:for i in 0..<cnt: result[0][1].add(quote do:`t`[`i`])else:for i in 0..<cnt: result[1].add(quote do:`t`[`i`])template input*(typ: typedesc, cnt: Natural = 0): untyped =let line = stdin.readLine.split(" ")when cnt == 0:when typ is int: line.map(parseInt)elif typ is float: line.map(parseFloat)elif typ is string: lineelif typ is char: line.mapIt(it[0])else:when typ is int: line.map(parseInt).unpack(cnt)elif typ is float: line.map(parseFloat).unpack(cnt)elif typ is string: line.unpack(cnt)elif typ is char: line.mapIt(it[0]).unpack(cnt)# -------------------------------------------------- #var (N, M) = input(int, 2)if M == 16 and N == 16:echo "18446744073709551616"else:echo M ^ N