結果

問題 No.1020 Reverse
ユーザー AlphaGiraffeAlphaGiraffe
提出日時 2020-04-10 22:15:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 128 bytes
コンパイル時間 85 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 15,640 KB
最終ジャッジ日時 2024-09-15 20:41:48
合計ジャッジ時間 1,511 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 30 ms
10,368 KB
testcase_02 AC 30 ms
10,496 KB
testcase_03 AC 29 ms
10,496 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 30 ms
10,496 KB
testcase_07 AC 36 ms
13,568 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 40 ms
15,584 KB
testcase_11 AC 40 ms
15,508 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 40 ms
15,640 KB
testcase_15 AC 40 ms
15,232 KB
testcase_16 AC 40 ms
15,232 KB
testcase_17 AC 40 ms
15,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
N,K=map(int,input().split())
S=list(input())

S1=S[:K-1]
S2=S[K-1:]

S1.reverse()
ans=S2+S1

print("".join(ans))
0