https://github.com/micromaomao/google-code-jam
Code Jam practices.
https://github.com/micromaomao/google-code-jam
Last synced: about 2 months ago
JSON representation
Code Jam practices.
- Host: GitHub
- URL: https://github.com/micromaomao/google-code-jam
- Owner: micromaomao
- Created: 2019-04-12T09:16:43.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-09-04T00:57:42.000Z (over 4 years ago)
- Last Synced: 2024-05-01T14:48:28.945Z (about 1 year ago)
- Language: Go
- Homepage: https://codejam.maowtm.org/
- Size: 242 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Mao's Google Code Jam practice files
Materials for a live round are only published when that round ends, of course.
Some (difficult / error-prone, etc.) problems will have a test generator that can generate large amount of input (and sometimes output) for debugging. There may also be files like `problem.in` which contains test cases that had caused me problems and took me a long time to realize what's wrong.
Some `*.in` files will have corresponding `*.out` files, representing the expected output. Otherwise, you can simply download the top solvers' code and run it on your input.
Sources and all additional materials posted here are released to the public domain.
My contest username is `maowtm`. Feel free to check out my (not so high) rank…
## License
![]()
To the extent possible under law,
Mao Wtm
has waived all copyright and related or neighboring rights to
Code Jam practise materials.
This work is published from:
China.## Some general experiences
* Always use 64 bit float.
* Interactive problems: **Do not exit with non-zero code when getting a -1 judgement**! Exiting with non-zero code will
turn a WA into a confusing RE.