結果

問題 No.1005 BOT対策
ユーザー MaboyMaboy
提出日時 2021-06-28 20:32:40
言語 Swift
(5.10.0)
結果
AC  
実行時間 106 ms / 2,000 ms
コード長 448 bytes
コンパイル時間 10,875 ms
コンパイル使用メモリ 172,824 KB
実行使用メモリ 17,152 KB
最終ジャッジ日時 2024-06-25 15:10:18
合計ジャッジ時間 12,259 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
16,896 KB
testcase_01 AC 11 ms
16,512 KB
testcase_02 AC 10 ms
16,768 KB
testcase_03 AC 11 ms
16,384 KB
testcase_04 AC 11 ms
16,512 KB
testcase_05 AC 11 ms
16,768 KB
testcase_06 AC 11 ms
16,512 KB
testcase_07 AC 10 ms
16,640 KB
testcase_08 AC 11 ms
16,512 KB
testcase_09 AC 11 ms
16,512 KB
testcase_10 AC 11 ms
16,768 KB
testcase_11 AC 11 ms
16,896 KB
testcase_12 AC 21 ms
16,896 KB
testcase_13 AC 12 ms
16,256 KB
testcase_14 AC 14 ms
16,896 KB
testcase_15 AC 12 ms
16,384 KB
testcase_16 AC 13 ms
16,256 KB
testcase_17 AC 11 ms
16,256 KB
testcase_18 AC 11 ms
16,768 KB
testcase_19 AC 11 ms
16,640 KB
testcase_20 AC 11 ms
16,512 KB
testcase_21 AC 11 ms
16,000 KB
testcase_22 AC 11 ms
16,000 KB
testcase_23 AC 11 ms
16,256 KB
testcase_24 AC 16 ms
16,896 KB
testcase_25 AC 19 ms
16,896 KB
testcase_26 AC 19 ms
17,152 KB
testcase_27 AC 11 ms
16,512 KB
testcase_28 AC 106 ms
16,896 KB
testcase_29 AC 11 ms
16,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import Foundation
var s = String(readLine()!)
let t = String(readLine()!)
var q = s
var c = 0
if t.count == 1 && s.contains(t){
    print(-1)
}else if s.contains(t){
    let i = t.index(before: t.endIndex)
    let p = t[...t.index(before: i)] + "." + t[i...]
    while q.contains(t){
        let r = q.range(of: t)!
        q = q.replacingOccurrences(of: t, with: p,range: r)
    }
    print(q.count - s.count)
}else{
    print(q.count - s.count)
}
0