結果
問題 | No.1020 Reverse |
ユーザー | liny_tail |
提出日時 | 2024-08-16 11:17:20 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 118 bytes |
コンパイル時間 | 412 ms |
コンパイル使用メモリ | 82,416 KB |
実行使用メモリ | 107,172 KB |
最終ジャッジ日時 | 2024-08-16 11:17:25 |
合計ジャッジ時間 | 4,423 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
57,088 KB |
testcase_01 | AC | 37 ms
51,968 KB |
testcase_02 | AC | 36 ms
51,328 KB |
testcase_03 | AC | 36 ms
52,992 KB |
testcase_04 | AC | 36 ms
51,712 KB |
testcase_05 | AC | 34 ms
53,760 KB |
testcase_06 | AC | 30 ms
52,680 KB |
testcase_07 | TLE | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
ソースコード
N,K = map(int, input().split(' ')) S = input() for i in range(N-K+1): S = S[:i] + S[i:i+K][::-1] + S[i+K:] print(S)