結果

問題 No.1020 Reverse
ユーザー roarisroaris
提出日時 2020-07-08 02:23:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 167 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 82,252 KB
最終ジャッジ日時 2024-10-02 00:45:49
合計ジャッジ時間 1,863 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,712 KB
testcase_01 AC 36 ms
51,712 KB
testcase_02 AC 36 ms
51,712 KB
testcase_03 WA -
testcase_04 AC 37 ms
51,968 KB
testcase_05 AC 37 ms
51,712 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 55 ms
75,264 KB
testcase_09 AC 53 ms
72,960 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 59 ms
80,128 KB
testcase_13 AC 59 ms
80,256 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 59 ms
79,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N, K = map(int, input().split())
S = input()[:-1]
ans = []

for i in range(N):
    ans.append(S[(i+K-1)%N])

print(''.join(ans))
0