結果
| 問題 | No.1005 BOT対策 |
| コンテスト | |
| ユーザー |
ohana
|
| 提出日時 | 2023-11-17 14:52:43 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 281 bytes |
| 記録 | |
| コンパイル時間 | 120 ms |
| コンパイル使用メモリ | 84,992 KB |
| 実行使用メモリ | 52,480 KB |
| 最終ジャッジ日時 | 2026-04-13 08:35:06 |
| 合計ジャッジ時間 | 2,633 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 21 WA * 8 |
ソースコード
s = input()
t = input()
if set(list(t)) == set(["."]) and t in s:
print(-1)
else:
ans = 0
tmp = ""
for c in s:
if len(tmp) == len(t):
tmp = tmp[1:]
tmp += c
if tmp == t:
ans += 1
tmp = ""
print(ans)
ohana