結果

問題 No.1020 Reverse
ユーザー GeckoちゃんGeckoちゃん
提出日時 2020-05-20 12:20:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 429 bytes
コンパイル時間 109 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 15,460 KB
最終ジャッジ日時 2024-10-01 23:31:05
合計ジャッジ時間 1,549 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
11,008 KB
testcase_01 AC 32 ms
10,880 KB
testcase_02 AC 32 ms
11,008 KB
testcase_03 AC 31 ms
10,880 KB
testcase_04 AC 32 ms
11,008 KB
testcase_05 AC 31 ms
11,008 KB
testcase_06 AC 32 ms
10,880 KB
testcase_07 AC 37 ms
12,672 KB
testcase_08 AC 38 ms
13,004 KB
testcase_09 AC 37 ms
12,928 KB
testcase_10 AC 39 ms
13,548 KB
testcase_11 AC 40 ms
14,092 KB
testcase_12 AC 39 ms
13,448 KB
testcase_13 AC 38 ms
13,568 KB
testcase_14 AC 41 ms
14,352 KB
testcase_15 AC 41 ms
15,308 KB
testcase_16 AC 41 ms
15,460 KB
testcase_17 AC 38 ms
13,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
import copy
S=list(input())

"""
S2 = copy.copy(S)
s=[0]*N
for i in range(0,N-K+1):
    for k, c in enumerate(reversed(list(S2[i:i+K]))):
        S2[i+k] = c
        s[i+k] += 1

print('S2', S2)
print('s', s)
"""


shift = K-1
# print(shift)

if (N - K)%2 == 0:
    a="".join(S[shift:]) + "".join(reversed(S[:shift]))
else:
    a="".join(S[shift:]) + "".join(S[:shift])
print(a)
#print(list(a) == S2)
0