結果
| 問題 |
No.430 文字列検索
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 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 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 14 |
ソースコード
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)