結果

問題 No.1005 BOT対策
ユーザー MaboyMaboy
提出日時 2021-06-28 19:25:55
言語 Swift
(5.10.0)
結果
WA  
実行時間 -
コード長 280 bytes
コンパイル時間 11,863 ms
コンパイル使用メモリ 172,124 KB
実行使用メモリ 17,024 KB
最終ジャッジ日時 2024-06-25 14:03:14
合計ジャッジ時間 7,417 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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