結果

問題 No.1005 BOT対策
ユーザー 👑 rin204rin204
提出日時 2020-07-04 18:42:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 369 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 11,892 KB
実行使用メモリ 10,044 KB
最終ジャッジ日時 2023-10-19 10:52:36
合計ジャッジ時間 2,227 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
9,912 KB
testcase_01 AC 32 ms
9,912 KB
testcase_02 AC 30 ms
9,912 KB
testcase_03 AC 31 ms
9,912 KB
testcase_04 AC 31 ms
9,912 KB
testcase_05 AC 30 ms
9,912 KB
testcase_06 RE -
testcase_07 RE -
testcase_08 AC 30 ms
9,912 KB
testcase_09 AC 31 ms
9,912 KB
testcase_10 AC 30 ms
9,912 KB
testcase_11 WA -
testcase_12 AC 30 ms
9,912 KB
testcase_13 WA -
testcase_14 AC 31 ms
9,912 KB
testcase_15 AC 30 ms
9,912 KB
testcase_16 WA -
testcase_17 AC 30 ms
9,912 KB
testcase_18 AC 29 ms
9,912 KB
testcase_19 RE -
testcase_20 RE -
testcase_21 AC 29 ms
9,912 KB
testcase_22 AC 29 ms
9,912 KB
testcase_23 AC 29 ms
9,912 KB
testcase_24 AC 31 ms
9,912 KB
testcase_25 AC 31 ms
9,912 KB
testcase_26 WA -
testcase_27 RE -
testcase_28 AC 31 ms
9,912 KB
testcase_29 AC 30 ms
9,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
t = input()
if len(s) == 1:
    if s in t:
        print(-1)
    else:
        print(0)
    exit()
    
ans = 0
pos = 0
n = len(t)
for st in s:
    if st == t[pos]:
        pos += 1
        if pos == n:
            ans += 1
            if t[0] == t[-1]:
                pos = 1
            else:
                pos = 0
    else:
        pos = 0
print(ans)
0