結果

問題 No.1020 Reverse
ユーザー gorugo30gorugo30
提出日時 2021-02-25 10:22:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 138 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 55,204 KB
最終ジャッジ日時 2024-09-25 08:59:01
合計ジャッジ時間 1,678 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,812 KB
testcase_01 AC 38 ms
53,220 KB
testcase_02 AC 38 ms
51,772 KB
testcase_03 AC 38 ms
52,480 KB
testcase_04 AC 38 ms
51,820 KB
testcase_05 AC 37 ms
52,332 KB
testcase_06 AC 38 ms
53,380 KB
testcase_07 AC 40 ms
53,224 KB
testcase_08 AC 40 ms
53,876 KB
testcase_09 AC 39 ms
53,160 KB
testcase_10 AC 40 ms
53,520 KB
testcase_11 AC 41 ms
55,204 KB
testcase_12 AC 39 ms
54,336 KB
testcase_13 AC 39 ms
54,340 KB
testcase_14 AC 40 ms
54,664 KB
testcase_15 AC 40 ms
53,752 KB
testcase_16 AC 41 ms
54,436 KB
testcase_17 AC 39 ms
53,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
S = input()
if (N - K) % 2:
    print(S[K - 1:] + S[:K - 1])
else:
    print(S[K - 1:] + S[:K - 1][::-1])
0