結果

問題 No.430 文字列検索
ユーザー dangodango
提出日時 2023-06-14 16:22:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,934 ms / 2,000 ms
コード長 128 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,512 KB
実行使用メモリ 76,212 KB
最終ジャッジ日時 2024-11-10 01:06:47
合計ジャッジ時間 15,423 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,352 KB
testcase_01 AC 314 ms
67,328 KB
testcase_02 AC 1,232 ms
69,760 KB
testcase_03 AC 1,188 ms
68,992 KB
testcase_04 AC 33 ms
51,948 KB
testcase_05 AC 32 ms
52,096 KB
testcase_06 AC 33 ms
51,968 KB
testcase_07 AC 36 ms
52,352 KB
testcase_08 AC 33 ms
52,352 KB
testcase_09 AC 36 ms
52,224 KB
testcase_10 AC 40 ms
59,264 KB
testcase_11 AC 1,835 ms
69,080 KB
testcase_12 AC 1,905 ms
71,420 KB
testcase_13 AC 1,934 ms
67,852 KB
testcase_14 AC 1,826 ms
67,200 KB
testcase_15 AC 1,729 ms
76,212 KB
testcase_16 AC 1,184 ms
70,656 KB
testcase_17 AC 1,172 ms
75,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S, A = input(), 0
for i in [0] * int(input()):
  K, B = input(), 0
  while -1 < i: i, A, B = S.find(K, i + B), A + B, 1
print(A)
0