結果
問題 | No.1005 BOT対策 |
ユーザー | Maboy |
提出日時 | 2021-06-28 19:38:10 |
言語 | Swift (5.10.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 359 bytes |
コンパイル時間 | 6,479 ms |
コンパイル使用メモリ | 173,684 KB |
実行使用メモリ | 17,152 KB |
最終ジャッジ日時 | 2024-06-25 14:17:45 |
合計ジャッジ時間 | 4,988 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 10 ms
16,640 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 11 ms
16,512 KB |
testcase_05 | WA | - |
testcase_06 | AC | 11 ms
16,512 KB |
testcase_07 | AC | 10 ms
16,512 KB |
testcase_08 | AC | 11 ms
16,640 KB |
testcase_09 | AC | 10 ms
16,896 KB |
testcase_10 | AC | 11 ms
16,640 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 11 ms
16,640 KB |
testcase_19 | AC | 11 ms
16,640 KB |
testcase_20 | AC | 11 ms
16,512 KB |
testcase_21 | AC | 12 ms
16,128 KB |
testcase_22 | AC | 11 ms
16,128 KB |
testcase_23 | AC | 11 ms
16,256 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 10 ms
16,512 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
ソースコード
import Foundation var s = String(readLine()!) let t = String(readLine()!) var c = 0 if t.count == 1 && s.contains(t){ print(-1) }else{ var q = s let i = t.startIndex let p = t[...i] + "." + t[t.index(after: i)...] while q.contains(t){ q = q.replacingOccurrences(of: t, with: p) print(q) } print(q.count - s.count) }