結果
問題 | No.1020 Reverse |
ユーザー | aaaaaaaaaa2230 |
提出日時 | 2022-03-27 22:55:51 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 44 ms / 2,000 ms |
コード長 | 121 bytes |
コンパイル時間 | 222 ms |
コンパイル使用メモリ | 81,872 KB |
実行使用メモリ | 54,016 KB |
最終ジャッジ日時 | 2024-11-06 15:39:23 |
合計ジャッジ時間 | 1,830 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 15 |
ソースコード
n,k = map(int,input().split()) S = input() if (n-k)%2: print(S[k-1:]+S[:k-1]) else: print(S[k-1:]+S[:k-1][::-1])