結果

問題 No.1020 Reverse
ユーザー NoaSaberNoaSaber
提出日時 2021-04-14 14:16:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 207 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,484 KB
実行使用メモリ 90,604 KB
最終ジャッジ日時 2024-06-30 14:09:27
合計ジャッジ時間 1,848 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,312 KB
testcase_01 AC 41 ms
54,520 KB
testcase_02 AC 41 ms
54,188 KB
testcase_03 AC 41 ms
54,516 KB
testcase_04 AC 41 ms
54,596 KB
testcase_05 AC 41 ms
54,732 KB
testcase_06 AC 41 ms
53,872 KB
testcase_07 AC 49 ms
67,520 KB
testcase_08 AC 49 ms
66,652 KB
testcase_09 AC 46 ms
62,876 KB
testcase_10 AC 53 ms
73,572 KB
testcase_11 AC 52 ms
70,272 KB
testcase_12 AC 51 ms
69,936 KB
testcase_13 AC 52 ms
71,552 KB
testcase_14 AC 53 ms
68,972 KB
testcase_15 AC 44 ms
55,776 KB
testcase_16 AC 44 ms
56,760 KB
testcase_17 AC 76 ms
90,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
from collections import deque
S=input()
que=deque([])
for i in range(K-1,N):
    que.append(S[i])
rest_l=S[:K-1]
if (N-K)%2==0:
    rest_l=rest_l[::-1]
print("".join(que)+rest_l)
0