|
|
back to boardWho can help me ? What is the answer when N=32767,H=60,M=10 ? My answer is 465476805623937394, is it correct? I used unsigned long long type, but got TLE. It's very strange. I got WA when I used long double type. Re: Who can help me ? The answer is correct. I also got WA when use Extended type, but got AC when change it to Int64. Re: Who can help me ? Thank you very much. What's the C++ compiler here ? Use __int64 type and "%I64d" specifier to read/write it. Re: Use __int64 type and "%I64d" specifier to read/write it. Thank you! AC now :) |
|
|