Tag: script
The problem is from codeforces: http://www.codeforces.com/problemset/problem/173/A This is the first problem that I submited in codeforces. It is a math problem that computes how many games for two players …
In linux, the which command is to search for executables in the given $PATH variables. In windows, the which command can be easily created simply a few lines of …
The problem is from codeforces: http://www.codeforces.com/problemset/problem/4/A The problem is so easy that you might even falls into the trap (you might think judging if it is even or odd). …
The problem is from codeforces: http://www.codeforces.com/problemset/problem/102/B The input can be very large, you might wonder to use long arithmetic via arrays. However, it might be easier than you think. …
COM technolgy is very mature and common. It is almost everywhere in Windows platform. In order to access COM objects in Python, you probably require to install ‘Win32 extension …