結果

問題 No.1020 Reverse
ユーザー stngstng
提出日時 2020-04-11 19:29:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 260 bytes
コンパイル時間 84 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-09-19 07:12:47
合計ジャッジ時間 2,999 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 134 ms
11,008 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 193 ms
11,264 KB
testcase_11 AC 197 ms
11,264 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 201 ms
11,264 KB
testcase_15 AC 175 ms
11,008 KB
testcase_16 AC 174 ms
11,264 KB
testcase_17 AC 192 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k = map(int,input().split())
s = input()

if n-k+1 % 2 == 0:
    for i in range(n):
        print(s[(k+i-1)%n],end='')
else:
    for i in range(n):
        if i <= n-k:
            print(s[(k+i-1)%n],end='')
        else:
            print(s[n-i-1],end='')

0