結果

問題 No.1005 BOT対策
ユーザー Mister
提出日時 2020-03-06 21:32:22
言語 C++17(clang)
(17.0.6 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 672 bytes
コンパイル時間 3,023 ms
コンパイル使用メモリ 130,048 KB
実行使用メモリ 6,272 KB
最終ジャッジ日時 2025-06-20 00:47:13
合計ジャッジ時間 1,769 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 29
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>

void solve() {
    std::string s, t;
    std::cin >> s >> t;
    int n = t.length();

    int i = 0, ans = 0;
    for (char c : s) {
        if (t[i] == c) {
            ++i;
        } else {
            i = 0;
            if (t[i] == c) ++i;
        }

        if (i == n) {
            i = 0;
            ++ans;
            if (t[i] == c) ++i;
        }

        if (i == n) {
            std::cout << -1 << std::endl;
            return;
        }
    }

    std::cout << ans << std::endl;
}

int main() {
    std::cin.tie(nullptr);
    std::cout.tie(nullptr);
    std::ios::sync_with_stdio(false);

    solve();

    return 0;
}
0