結果

問題 No.1020 Reverse
ユーザー kohei2019kohei2019
提出日時 2021-01-11 18:58:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 147 bytes
コンパイル時間 114 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 19,072 KB
最終ジャッジ日時 2024-11-21 09:18:21
合計ジャッジ時間 3,807 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,880 KB
testcase_01 AC 35 ms
10,752 KB
testcase_02 AC 33 ms
10,880 KB
testcase_03 WA -
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 33 ms
10,880 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 192 ms
17,152 KB
testcase_09 AC 166 ms
16,116 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 235 ms
18,816 KB
testcase_13 AC 234 ms
18,688 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 226 ms
18,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import copy
N,K = map(int,input().split())
S = list(input())
ans = copy.deepcopy(S)
for i in range(N):
    ans[i] = S[(i+K-1)%N]
print(*ans,sep='')
0