Hi.
I want to remove my account.
How to do?
Let me know that.
Bye.
Search found 6 matches
- Thu Sep 18, 2014 8:38 am
- Forum: FAQ
- Topic: I want to remove my account
- Replies: 1
- Views: 8571
- Mon Oct 31, 2011 4:04 am
- Forum: Volume 123 (12300-12399)
- Topic: 12318 - Digital Roulette
- Replies: 5
- Views: 2688
Re: 12318 - Digital Roulette
Now I got a AC.
thx^^
I changed pow method.
Have a nice day~
thx^^
I changed pow method.
Have a nice day~
- Sun Oct 30, 2011 10:39 am
- Forum: Volume 123 (12300-12399)
- Topic: 12318 - Digital Roulette
- Replies: 5
- Views: 2688
Re: 12318 - Digital Roulette
one more question
shuld i use long long or long long int? behalf of int??
shuld i use long long or long long int? behalf of int??
- Sun Oct 30, 2011 10:35 am
- Forum: Volume 123 (12300-12399)
- Topic: 12318 - Digital Roulette
- Replies: 5
- Views: 2688
Re: 12318 - Digital Roulette
I had changed pow method many times but i still got a WA #include "stdio.h" #include "memory.h" #include "algorithm" #define MAX 100001 using namespace std; long long power(long long x, int k, int size) { long long powval; if( k==0) return 1; powval = x%(size+1); for( i...
- Wed Oct 26, 2011 11:58 am
- Forum: Volume 123 (12300-12399)
- Topic: 12318 - Digital Roulette
- Replies: 5
- Views: 2688
12318 - Digital Roulette
I think. my logic is correct. but i got a WA. is there mistake in my code? here my code. #include "stdio.h" #include "memory.h" #include "algorithm" #include "math.h" #define MAX 100001 using namespace std; int main() { int poly[11]; int answer[MAX]; int size,...
- Wed Oct 26, 2011 11:54 am
- Forum: Volume 123 (12300-12399)
- Topic: 12321 - Gas Stations
- Replies: 3
- Views: 2035
12321 - Gas Station
i don't know reason for why i got a WA. my outputs are correct. i think anyone give me advice to solve this problem. here my code. #include "stdio.h" #include "stdlib.h" #define SIZE 10050 typedef struct Gas { int start; int end; bool isRemoved; }Gas; int cmp(const void* a, const...