結果

問題 No.1020 Reverse
ユーザー nadeshinonadeshino
提出日時 2020-04-10 21:40:19
言語 Nim
(2.0.2)
結果
WA  
実行時間 -
コード長 366 bytes
コンパイル時間 4,430 ms
コンパイル使用メモリ 68,240 KB
実行使用メモリ 4,736 KB
最終ジャッジ日時 2023-10-13 23:44:45
合計ジャッジ時間 5,338 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,352 KB
testcase_01 AC 1 ms
4,352 KB
testcase_02 AC 2 ms
4,352 KB
testcase_03 WA -
testcase_04 AC 1 ms
4,352 KB
testcase_05 AC 1 ms
4,352 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 3 ms
4,352 KB
testcase_09 AC 3 ms
4,352 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 4 ms
4,536 KB
testcase_13 AC 4 ms
4,736 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 5 ms
4,532 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: 'math' [UnusedImport]
/home/judge/data/code/Main.nim(1, 25) Warning: imported and not used: 'sequtils' [UnusedImport]
/home/judge/data/code/Main.nim(1, 45) Warning: imported and not used: 'macros' [UnusedImport]

ソースコード

diff #

import algorithm, math, sequtils, strutils, macros

let read* = iterator: string =
  while true: (for s in stdin.readLine.split: yield s)

template input*(T: static[typedesc]): untyped = 
  when T is int: read().parseInt
  elif T is float: read().parseFloat
  elif T is string: read()

let N, K = input(int)
let S = "#" & input(string)
echo S[K .. N] & S[1 .. K - 1]
0