結果
問題 | No.1005 BOT対策 |
ユーザー |
![]() |
提出日時 | 2020-03-09 23:03:25 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 368 bytes |
コンパイル時間 | 1,913 ms |
コンパイル使用メモリ | 167,048 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-15 18:01:48 |
合計ジャッジ時間 | 2,831 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 22 WA * 5 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { string s, t; cin >> s >> t; if (t.size() == 1) { cout << -1 << endl; return 0; } int ans = 0; for (int i = 0; i + t.size() - 1 < s.size(); i++) { string u = s.substr(i, t.size()); if (u == t) { ans++; i += t.size() - 1; } } cout << ans << endl; return 0; }