├── .github └── workflows │ └── release.yml ├── .gitignore ├── LICENSE ├── README.md ├── misc ├── fonts │ ├── CascadiaMono-LICENSE │ ├── CascadiaMono-SemiBold.otf │ ├── CascadiaMono-SemiBoldItalic.otf │ ├── CascadiaMono-SemiLight.otf │ ├── CascadiaMono-SemiLightItalic.otf │ ├── FZHeiFJ-B.OTF │ ├── FZHeiFJ-R.OTF │ ├── LXGWWenKai-Bold.ttf │ ├── LXGWWenKai-LICENSE │ ├── LXGWWenKai-Regular.ttf │ ├── SourceHanSansSC-Bold.otf │ ├── SourceHanSansSC-LICENSE │ ├── SourceHanSansSC-Regular.otf │ ├── SourceHanSerifSC-Bold.otf │ ├── SourceHanSerifSC-LICENSE │ └── SourceHanSerifSC-Regular.otf └── logo.png ├── pkslide.cls ├── tex-format-test └── NTCP-Format-Test.tex └── tex-part-1 ├── NTCP-Part-1.tex └── pics ├── division_structure.tex └── prime.png /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Number-Theory-in-Competitive-Programming/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Number-Theory-in-Competitive-Programming/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Number-Theory-in-Competitive-Programming/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Number-Theory-in-Competitive-Programming/HEAD/README.md -------------------------------------------------------------------------------- /misc/fonts/CascadiaMono-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Number-Theory-in-Competitive-Programming/HEAD/misc/fonts/CascadiaMono-LICENSE -------------------------------------------------------------------------------- /misc/fonts/CascadiaMono-SemiBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Number-Theory-in-Competitive-Programming/HEAD/misc/fonts/CascadiaMono-SemiBold.otf -------------------------------------------------------------------------------- /misc/fonts/CascadiaMono-SemiBoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Number-Theory-in-Competitive-Programming/HEAD/misc/fonts/CascadiaMono-SemiBoldItalic.otf -------------------------------------------------------------------------------- /misc/fonts/CascadiaMono-SemiLight.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Number-Theory-in-Competitive-Programming/HEAD/misc/fonts/CascadiaMono-SemiLight.otf -------------------------------------------------------------------------------- /misc/fonts/CascadiaMono-SemiLightItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Number-Theory-in-Competitive-Programming/HEAD/misc/fonts/CascadiaMono-SemiLightItalic.otf -------------------------------------------------------------------------------- /misc/fonts/FZHeiFJ-B.OTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Number-Theory-in-Competitive-Programming/HEAD/misc/fonts/FZHeiFJ-B.OTF -------------------------------------------------------------------------------- /misc/fonts/FZHeiFJ-R.OTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Number-Theory-in-Competitive-Programming/HEAD/misc/fonts/FZHeiFJ-R.OTF -------------------------------------------------------------------------------- /misc/fonts/LXGWWenKai-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Number-Theory-in-Competitive-Programming/HEAD/misc/fonts/LXGWWenKai-Bold.ttf -------------------------------------------------------------------------------- /misc/fonts/LXGWWenKai-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Number-Theory-in-Competitive-Programming/HEAD/misc/fonts/LXGWWenKai-LICENSE -------------------------------------------------------------------------------- /misc/fonts/LXGWWenKai-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Number-Theory-in-Competitive-Programming/HEAD/misc/fonts/LXGWWenKai-Regular.ttf -------------------------------------------------------------------------------- /misc/fonts/SourceHanSansSC-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Number-Theory-in-Competitive-Programming/HEAD/misc/fonts/SourceHanSansSC-Bold.otf -------------------------------------------------------------------------------- /misc/fonts/SourceHanSansSC-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Number-Theory-in-Competitive-Programming/HEAD/misc/fonts/SourceHanSansSC-LICENSE -------------------------------------------------------------------------------- /misc/fonts/SourceHanSansSC-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Number-Theory-in-Competitive-Programming/HEAD/misc/fonts/SourceHanSansSC-Regular.otf -------------------------------------------------------------------------------- /misc/fonts/SourceHanSerifSC-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Number-Theory-in-Competitive-Programming/HEAD/misc/fonts/SourceHanSerifSC-Bold.otf -------------------------------------------------------------------------------- /misc/fonts/SourceHanSerifSC-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Number-Theory-in-Competitive-Programming/HEAD/misc/fonts/SourceHanSerifSC-LICENSE -------------------------------------------------------------------------------- /misc/fonts/SourceHanSerifSC-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Number-Theory-in-Competitive-Programming/HEAD/misc/fonts/SourceHanSerifSC-Regular.otf -------------------------------------------------------------------------------- /misc/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Number-Theory-in-Competitive-Programming/HEAD/misc/logo.png -------------------------------------------------------------------------------- /pkslide.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Number-Theory-in-Competitive-Programming/HEAD/pkslide.cls -------------------------------------------------------------------------------- /tex-format-test/NTCP-Format-Test.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Number-Theory-in-Competitive-Programming/HEAD/tex-format-test/NTCP-Format-Test.tex -------------------------------------------------------------------------------- /tex-part-1/NTCP-Part-1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Number-Theory-in-Competitive-Programming/HEAD/tex-part-1/NTCP-Part-1.tex -------------------------------------------------------------------------------- /tex-part-1/pics/division_structure.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Number-Theory-in-Competitive-Programming/HEAD/tex-part-1/pics/division_structure.tex -------------------------------------------------------------------------------- /tex-part-1/pics/prime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GitPinkRabbit/Number-Theory-in-Competitive-Programming/HEAD/tex-part-1/pics/prime.png --------------------------------------------------------------------------------