結果
問題 | No.675 ドットちゃんたち |
ユーザー |
|
提出日時 | 2019-02-03 22:32:49 |
言語 | Nim (2.2.0) |
結果 |
AC
|
実行時間 | 32 ms / 2,000 ms |
コード長 | 2,825 bytes |
コンパイル時間 | 3,417 ms |
コンパイル使用メモリ | 79,128 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-01 11:17:41 |
合計ジャッジ時間 | 4,679 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 8 |
コンパイルメッセージ
/home/judge/data/code/Main.nim(4, 1) Warning: template 'stopwatch' is implicitly redefined; this is deprecated, add an explicit .redefine pragma [ImplicitTemplateRedefinition] /home/judge/data/code/Main.nim(1, 8) Warning: imported and not used: 'sequtils' [UnusedImport]
ソースコード
import sequtils,times,macrosproc printf(formatstr: cstring){.header: "<stdio.h>", varargs.}template stopwatch(body) = (let t1 = cpuTime();body;echo "TIME:",(cpuTime() - t1) * 1000,"ms")template stopwatch(body) = body# GC_disableMarkAndSweep()proc putchar_unlocked(c:char){. importc:"putchar_unlocked",header: "<stdio.h>" .}proc printInt(a0:int) =if a0 < 0 : putchar_unlocked('-') # マイナスにも対応したければこれで可能var a0 = a0.abstemplate put(n:int) = putchar_unlocked("0123456789"[n])proc getPrintIntNimCode(n,maxA:static[int64]):string =result = "if a0 < " & $maxA & ":\n"for i in 1..n: result &= " let a" & $i & " = a" & $(i-1) & " div 10\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))eval(getPrintIntNimCode(9,10000000000))eval(getPrintIntNimCode(10,100000000000))eval(getPrintIntNimCode(11,1000000000000))eval(getPrintIntNimCode(12,10000000000000))eval(getPrintIntNimCode(13,100000000000000))eval(getPrintIntNimCode(14,1000000000000000))eval(getPrintIntNimCode(15,10000000000000000))eval(getPrintIntNimCode(16,100000000000000000))eval(getPrintIntNimCode(17,1000000000000000000))proc getchar_unlocked():char {. importc:"getchar_unlocked",header: "<stdio.h>" .}proc scan(): int =var minus = falseblock:let k = getchar_unlocked()if k == '-' : minus = trueelse: result = 10 * result + k.ord - '0'.ordwhile true:let k = getchar_unlocked()if k < '0' or k > '9': breakresult = 10 * result + k.ord - '0'.ordif minus: result *= -1stopwatch:let n = scan()let px = scan()let py = scan()var Q,V,X,Y : array[100010,int]for i in 0..<n:Q[i] = scan()if Q[i] == 3 : continueV[i] = scan()var M = @[@[1,0,0],@[0,1,0],@[0,0,1]]stopwatch:let p = @[px,py,1]for i in (n-1).countdown(0):let q = Q[i]let v = V[i]if q == 3:for i in 0..<3:(M[0][i],M[1][i]) = (-M[1][i],M[0][i])elif q == 2:for i in 0..<3:M[2][i] += v * M[1][i]else:for i in 0..<3:M[2][i] += v * M[0][i]X[i] = M[0][0] * px + M[1][0] * py + M[2][0]Y[i] = M[0][1] * px + M[1][1] * py + M[2][1]stopwatch:for i in 0..<n:X[i].printInt()putchar_unlocked(' ')Y[i].printInt()putchar_unlocked('\n')# printf("%d %d\n",X[i],Y[i])