test/cpv/library-checker-string/zalgorithm.zfunc.cpp
| Line | Branch | Exec | Source |
|---|---|---|---|
| 1 | // competitive-verifier: PROBLEM https://judge.yosupo.jp/problem/zalgorithm | ||
| 2 | #include "../../../src/io/container/lib.hpp" | ||
| 3 | #include "../../../src/io/fastin/lib.hpp" | ||
| 4 | #include "../../../src/io/fastout/lib.hpp" | ||
| 5 | #include "../../../src/str/z_func/lib.hpp" | ||
| 6 | |||
| 7 | using namespace tifa_libs; | ||
| 8 | 29 | int main() { | |
| 9 | 29 | strn s; | |
| 10 | 29 | fin >> s; | |
| 11 | 29 | fout << z_func(s) << '\n'; | |
| 12 | 29 | return 0; | |
| 13 | 29 | } | |
| 14 |