Rules and Details
- Some problems will be put up here. Open them, read them, understand them, think about them, solve them, code them, submit them, debug them, submit them, debug them, submit them...
- There are limits on execution time, memory used, and source code size submitted.
- You are not allowed to make any system calls.
- Input and output will be to standard input and output (called stdin and stdout in C, also referred to by the cin and cout streams in C++… you get the idea) respectively. That is, you do not have to open files to read and write (and you will not be allowed to).
| Language | Compiler Used | Compiler Command Line |
|---|---|---|
| C | gcc (GCC) 4.1.2 | gcc -Wall -lm -O2 <filename> |
| C++ | g++ (GCC) 4.1.2 | g++ -Wall -O2 <filename> |
