結果

問題 No.1020 Reverse
ユーザー maimai
提出日時 2020-04-10 21:34:24
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 278 bytes
コンパイル時間 509 ms
コンパイル使用メモリ 7,168 KB
実行使用メモリ 12,672 KB
最終ジャッジ日時 2024-09-15 19:25:00
合計ジャッジ時間 2,705 ms
ジャッジサーバーID
(参考情報)
judge5 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 86 ms
12,160 KB
testcase_02 AC 87 ms
11,904 KB
testcase_03 WA -
testcase_04 AC 88 ms
12,032 KB
testcase_05 WA -
testcase_06 AC 85 ms
12,032 KB
testcase_07 WA -
testcase_08 AC 88 ms
12,416 KB
testcase_09 WA -
testcase_10 AC 87 ms
12,416 KB
testcase_11 WA -
testcase_12 AC 86 ms
12,416 KB
testcase_13 WA -
testcase_14 AC 86 ms
12,288 KB
testcase_15 WA -
testcase_16 AC 89 ms
12,672 KB
testcase_17 AC 87 ms
12,544 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:3: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

def lscan; gets.split.map(&:to_i); end

n, k = lscan
S = gets.chomp
# s = S
# (n-k+1).times do |i|
#   x,y,z = s[0...i], s[i...(i+k)], s[(i+k)..-1]
#   s = x + y.reverse + z
#   p s
# end
# puts s

head, tail = S[0...(k-1)], S[(k-1)..-1]
head.reverse! if k.odd?
puts tail + head
0