結果

問題 No.1020 Reverse
ユーザー roarisroaris
提出日時 2020-12-19 20:28:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 66 ms / 2,000 ms
コード長 248 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 80,256 KB
最終ジャッジ日時 2024-09-21 10:34:57
合計ジャッジ時間 2,601 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
51,840 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 44 ms
51,968 KB
testcase_03 AC 41 ms
52,096 KB
testcase_04 AC 39 ms
51,712 KB
testcase_05 AC 40 ms
51,584 KB
testcase_06 AC 39 ms
51,584 KB
testcase_07 AC 57 ms
70,700 KB
testcase_08 AC 59 ms
71,424 KB
testcase_09 AC 57 ms
66,304 KB
testcase_10 AC 65 ms
78,464 KB
testcase_11 AC 63 ms
76,160 KB
testcase_12 AC 62 ms
75,776 KB
testcase_13 AC 64 ms
77,184 KB
testcase_14 AC 63 ms
75,520 KB
testcase_15 AC 56 ms
67,456 KB
testcase_16 AC 57 ms
67,712 KB
testcase_17 AC 66 ms
80,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N, K = map(int, input().split())
S = input()[:-1]
ans = []

for i in range(K-1, N):
    ans.append(S[i])

if (N-K+1)%2==0:
    ans += list(S[:K-1])
else:
    ans += list(reversed(S[:K-1]))

print(''.join(ans))
0