結果

問題 No.1020 Reverse
ユーザー kept1994kept1994
提出日時 2022-05-09 20:08:07
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 215 bytes
コンパイル時間 542 ms
コンパイル使用メモリ 82,040 KB
実行使用メモリ 55,908 KB
最終ジャッジ日時 2024-07-16 17:58:44
合計ジャッジ時間 2,529 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 39 ms
51,584 KB
testcase_02 AC 39 ms
51,456 KB
testcase_03 AC 41 ms
51,840 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 42 ms
51,584 KB
testcase_07 AC 39 ms
53,120 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 41 ms
53,248 KB
testcase_11 AC 41 ms
53,632 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 40 ms
53,888 KB
testcase_15 AC 41 ms
53,760 KB
testcase_16 AC 42 ms
54,400 KB
testcase_17 AC 40 ms
53,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import sys
MOD = 998244353

def main():
    N, K = map(int, input().split())
    S = input()
    S = S[(K-1):] + S[:(K- 1)][::-1]
    print(S)
    return

if __name__ == '__main__':
    main()
0