結果
問題 | No.1020 Reverse |
ユーザー | Maboy |
提出日時 | 2021-06-28 23:29:48 |
言語 | Swift (5.10.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 418 bytes |
コンパイル時間 | 12,125 ms |
コンパイル使用メモリ | 185,672 KB |
実行使用メモリ | 23,068 KB |
最終ジャッジ日時 | 2024-06-25 17:22:02 |
合計ジャッジ時間 | 16,396 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 10 ms
23,068 KB |
testcase_01 | AC | 11 ms
15,360 KB |
testcase_02 | AC | 11 ms
15,744 KB |
testcase_03 | AC | 53 ms
15,616 KB |
testcase_04 | AC | 11 ms
15,744 KB |
testcase_05 | AC | 58 ms
15,616 KB |
testcase_06 | AC | 16 ms
15,744 KB |
testcase_07 | TLE | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
コンパイルメッセージ
Main.swift:6:9: warning: variable 's' was never mutated; consider changing to 'let' constant var s = S.index(S.startIndex, offsetBy: i) ~~~ ^ let Main.swift:7:9: warning: variable 'e' was never mutated; consider changing to 'let' constant var e = S.index(S.startIndex, offsetBy: i+K-1) ~~~ ^ let Main.swift:9:9: warning: variable 'U' was never mutated; consider changing to 'let' constant var U = S[s...e] ~~~ ^ let Main.swift:10:9: warning: variable 'V' was never mutated; consider changing to 'let' constant var V = e == S.endIndex ? "" : S[S.index(after: e)...] ~~~ ^ let
ソースコード
import Foundation let n = readLine()!.split(separator: " ").map{Int($0)!} var S = String(readLine()!) let (N,K) = (n[0],n[1]) for i in 0..<N-K+1{ var s = S.index(S.startIndex, offsetBy: i) var e = S.index(S.startIndex, offsetBy: i+K-1) let T = i == 0 ? "" : S[...S.index(before: s)] var U = S[s...e] var V = e == S.endIndex ? "" : S[S.index(after: e)...] S = T+String(U.reversed())+V } print(S)