QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#653040 | #8340. 3 Sum | ReTF# | Compile Error | / | / | C++14 | 898b | 2024-10-18 19:28:48 | 2024-10-18 19:28:50 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
Details
answer.code:6:33: error: narrowing conversion of ‘1.000000007e+9’ from ‘double’ to ‘long long int’ [-Wnarrowing] 6 | const int mo[3] = {998244353,1e9+7,1e9+9}; | ~~~^~ answer.code:6:39: error: narrowing conversion of ‘1.000000009e+9’ from ‘double’ to ‘long long int’ [-Wnarrowing] 6 | const int mo[3] = {998244353,1e9+7,1e9+9}; | ~~~^~ answer.code: In function ‘int main()’: answer.code:12:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 12 | scanf("%lld%lld",&n,&m); | ~~~~~^~~~~~~~~~~~~~~~~~ answer.code:14:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 14 | scanf("%s",c+1); | ~~~~~^~~~~~~~~~