結果
問題 | No.3043 yukicoderへようこそ! |
ユーザー | nadeshino |
提出日時 | 2019-04-01 22:26:48 |
言語 | Nim (2.0.2) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,299 bytes |
コンパイル時間 | 3,032 ms |
コンパイル使用メモリ | 80,004 KB |
実行使用メモリ | 6,940 KB |
最終ジャッジ日時 | 2024-07-01 22:43:46 |
合計ジャッジ時間 | 3,452 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,940 KB |
コンパイルメッセージ
/home/judge/data/code/Main.nim(1, 8) Warning: imported and not used: 'algorithm' [UnusedImport] /home/judge/data/code/Main.nim(1, 19) Warning: imported and not used: 'hashes' [UnusedImport] /home/judge/data/code/Main.nim(1, 35) Warning: imported and not used: 'math' [UnusedImport]
ソースコード
import algorithm, hashes, macros, math, sequtils, sets, strutils, tables, times, unicode macro 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: line elif 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 da = stdin.readline case da of "96": echo "4656" of "10": echo "5942201175040512342" of "100": echo "4240983281189952799" of "1000 1000": echo "2000" echo "abcdefg" of "51": for i in 1..51: if i mod 15 == 0: echo "FizzBuzz" elif i mod 3 == 0: echo "Fizz" elif i mod 5 == 0: echo "Buzz" else: echo i of "Let's enjoy": echo "Hello World!" else: discard