結果

問題 No.1020 Reverse
ユーザー brthyyjpbrthyyjp
提出日時 2020-04-10 21:29:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 63 ms / 2,000 ms
コード長 173 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 81,784 KB
実行使用メモリ 72,832 KB
最終ジャッジ日時 2024-09-15 19:12:12
合計ジャッジ時間 1,976 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,584 KB
testcase_01 AC 40 ms
51,456 KB
testcase_02 AC 40 ms
51,584 KB
testcase_03 AC 40 ms
51,456 KB
testcase_04 AC 41 ms
51,584 KB
testcase_05 AC 40 ms
51,712 KB
testcase_06 AC 39 ms
51,712 KB
testcase_07 AC 54 ms
66,176 KB
testcase_08 AC 53 ms
63,232 KB
testcase_09 AC 50 ms
60,672 KB
testcase_10 AC 61 ms
71,936 KB
testcase_11 AC 63 ms
72,448 KB
testcase_12 AC 58 ms
66,560 KB
testcase_13 AC 58 ms
66,688 KB
testcase_14 AC 63 ms
72,832 KB
testcase_15 AC 61 ms
71,680 KB
testcase_16 AC 61 ms
71,552 KB
testcase_17 AC 57 ms
66,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
s = list(str(input()))

if (n-k+1)%2 == 0:
    ans = s[k-1:]+s[0:k-1]
else:
    ans = s[k-1:]+list(reversed(s[0:k-1]))

print(''.join(ans))
0