結果
問題 |
No.430 文字列検索
|
ユーザー |
|
提出日時 | 2024-03-16 11:31:49 |
言語 | Rust (1.83.0 + proconio) |
結果 |
AC
|
実行時間 | 770 ms / 2,000 ms |
コード長 | 1,059 bytes |
コンパイル時間 | 10,773 ms |
コンパイル使用メモリ | 401,940 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-10 01:11:06 |
合計ジャッジ時間 | 19,238 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 14 |
ソースコード
#[allow(unused_macros)] macro_rules! read { ([$t:ty] ; $n:expr) => ((0..$n).map(|_| read!([$t])).collect::<Vec<_>>()); ($($t:ty),+ ; $n:expr) => ((0..$n).map(|_| read!($($t),+)).collect::<Vec<_>>()); ([$t:ty]) => (rl().split_whitespace().map(|w| w.parse().unwrap()).collect::<Vec<$t>>()); ($t:ty) => (rl().parse::<$t>().unwrap()); ($($t:ty),*) => {{ let buf = rl(); let mut w = buf.split_whitespace(); ($(w.next().unwrap().parse::<$t>().unwrap()),*) }}; } #[allow(dead_code)] fn rl() -> String { let mut buf = String::new(); std::io::stdin().read_line(&mut buf).unwrap(); buf.trim_end().to_owned() } fn main() { let ss = read!(String).chars().collect::<Vec<_>>(); let m = read!(usize); let css = read!(String; m) .into_iter() .map(|s| s.chars().collect::<Vec<_>>()) .collect::<Vec<_>>(); let mut ans = 0; for cs in css { ans += ss.windows(cs.len()).filter(|w| *w == cs).count(); } println!("{ans}"); }