結果

問題 No.1005 BOT対策
ユーザー brthyyjpbrthyyjp
提出日時 2020-03-06 22:36:59
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 305 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 65,256 KB
最終ジャッジ日時 2024-10-14 10:49:27
合計ジャッジ時間 2,772 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
63,224 KB
testcase_01 AC 65 ms
64,396 KB
testcase_02 AC 58 ms
62,772 KB
testcase_03 AC 55 ms
64,368 KB
testcase_04 AC 55 ms
63,540 KB
testcase_05 AC 56 ms
64,752 KB
testcase_06 AC 56 ms
63,620 KB
testcase_07 AC 57 ms
63,808 KB
testcase_08 AC 55 ms
62,836 KB
testcase_09 AC 54 ms
63,936 KB
testcase_10 AC 56 ms
63,312 KB
testcase_11 AC 55 ms
64,656 KB
testcase_12 WA -
testcase_13 AC 54 ms
63,336 KB
testcase_14 AC 55 ms
63,496 KB
testcase_15 AC 54 ms
63,768 KB
testcase_16 AC 55 ms
62,712 KB
testcase_17 AC 58 ms
64,744 KB
testcase_18 AC 54 ms
63,308 KB
testcase_19 AC 54 ms
63,640 KB
testcase_20 AC 56 ms
62,876 KB
testcase_21 AC 58 ms
65,256 KB
testcase_22 AC 58 ms
64,724 KB
testcase_23 AC 55 ms
63,820 KB
testcase_24 AC 55 ms
63,248 KB
testcase_25 AC 55 ms
63,164 KB
testcase_26 AC 56 ms
64,104 KB
testcase_27 AC 55 ms
64,548 KB
testcase_28 WA -
testcase_29 AC 55 ms
63,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = str(input())
t = str(input())

import re
m = re.findall(t, s)
#print(m)

if len(t) == 1:
    if len(m) == 0:
        print(0)
    else:
        print(-1)
elif t == t[0]*len(t):
    s_ = s.replace(t, t[0])
    #print(s_)
    ans = len(m) + len(re.findall(t, s_))
    print(ans)
else:
    print(len(m))
0