結果

問題 No.796 well known
ユーザー むらためむらため
提出日時 2019-05-05 14:47:30
言語 Nim
(2.0.2)
結果
WA  
実行時間 -
コード長 1,872 bytes
コンパイル時間 2,331 ms
コンパイル使用メモリ 66,376 KB
実行使用メモリ 4,564 KB
最終ジャッジ日時 2023-09-14 16:19:06
合計ジャッジ時間 5,933 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 1 ms
4,376 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import macros
proc getchar_unlocked():char {. importc:"getchar_unlocked",header: "<stdio.h>" ,discardable.}
proc scan(): int =
  while true:
    let k = getchar_unlocked()
    if k < '0': return
    result = 10 * result + k.ord - '0'.ord

proc putchar_unlocked(c:char){. importc:"putchar_unlocked",header: "<stdio.h>" .}
proc printInt(a0:int32) =
  # if a0 < 0 : putchar_unlocked('-') # マイナスにも対応したければこれで可能
  # var a0 = a0.abs
  template div10(a:int32) : int32 = cast[int32]((0x1999999A * cast[int64](a)) shr 32)
  template put(n:int32) = putchar_unlocked("0123456789"[n])
  proc getPrintIntNimCode(n,maxA:static[int32]):string =
    result = "if a0 < " & $maxA & ":\n"
    for i in 1..n: result &= "  let a" & $i & " = a" & $(i-1) & ".div10\n"
    result &= "  put(a" & $n & ")\n"
    for i in n.countdown(1): result &= "  put(a" & $(i-1) & "-a" & $i & "*10)\n"
    result &= "  return"
  macro eval(s:static[string]): auto = parseStmt(s)
  eval(getPrintIntNimCode(0,10))
  eval(getPrintIntNimCode(1,100))
  eval(getPrintIntNimCode(2,1000))
  eval(getPrintIntNimCode(3,10000))
  eval(getPrintIntNimCode(4,100000))
  eval(getPrintIntNimCode(5,1000000))
  eval(getPrintIntNimCode(6,10000000))
  eval(getPrintIntNimCode(7,100000000))
  eval(getPrintIntNimCode(8,1000000000))
template printInt(n:int,c:char) =
  printInt(n.int32)
  putchar_unlocked(c)

let n = scan()
# 1 2 3 4 5 6 ... [3n+1]
#   2 3 4 5 6 ... (3n+1) [3n+2] (3n+3)
# 1 2   4 5 6 ... (3n-2) (3n-1) [3n] (3n+1)
let nm = n mod 3
if n == 3:
  quit "1 3 6",0
if nm == 1:
  for i in 1..n:
    printInt(i,' ')
  putchar_unlocked('\n')
elif nm == 2:
  for i in 2..n+1:
    printInt(i,' ')
  putchar_unlocked('\n')
else:
  putchar_unlocked('1')
  putchar_unlocked(' ')
  putchar_unlocked('2')
  putchar_unlocked(' ')
  for i in 4..n+1:
    printInt(i,' ')
  putchar_unlocked('\n')

0