結果
問題 | No.729 文字swap |
ユーザー | YukicoderA |
提出日時 | 2018-11-17 18:23:45 |
言語 | Swift (5.10.0) |
結果 |
AC
|
実行時間 | 12 ms / 2,000 ms |
コード長 | 569 bytes |
コンパイル時間 | 2,387 ms |
コンパイル使用メモリ | 176,792 KB |
実行使用メモリ | 16,768 KB |
最終ジャッジ日時 | 2024-05-07 18:19:53 |
合計ジャッジ時間 | 3,273 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 9 ms
16,384 KB |
testcase_01 | AC | 12 ms
16,384 KB |
testcase_02 | AC | 10 ms
16,640 KB |
testcase_03 | AC | 9 ms
16,768 KB |
testcase_04 | AC | 9 ms
16,640 KB |
testcase_05 | AC | 9 ms
16,512 KB |
testcase_06 | AC | 10 ms
16,512 KB |
testcase_07 | AC | 10 ms
16,256 KB |
testcase_08 | AC | 10 ms
16,384 KB |
testcase_09 | AC | 10 ms
16,768 KB |
testcase_10 | AC | 9 ms
16,512 KB |
testcase_11 | AC | 10 ms
16,768 KB |
testcase_12 | AC | 9 ms
16,512 KB |
testcase_13 | AC | 9 ms
16,768 KB |
ソースコード
import Foundation var text = readLine()! let indexs = readLine()!.components(separatedBy: " ") let index1 = Int(indexs[0])! let index2 = Int(indexs[1])! let idx1 = text.index(text.startIndex, offsetBy: index1) let idx2 = text.index(text.startIndex, offsetBy: index2) let w1 = text[idx1] let w2 = text[idx2] text.replaceSubrange(idx1..<text.index(idx1, offsetBy: 1), with: String(w2)) text.replaceSubrange(idx2..<text.index(idx2, offsetBy: 1), with: String(w1)) print(text)