运行 ID 作者 题号 测评结果 分数 时间 内存 语言 代码长度 提交时间
270310 20212005001高振桐 1123 - HYR 的方向判定 编译错误 0 0 MS 0 KB C++ 1040 3年前
暂时无法获取本题测试点详情。

Main.cc:4:16: error: ‘int time [100010]’ redeclared as different kind of entity
4 | int time[100010];
| ^
In file included from /usr/include/pthread.h:23,
from /usr/include/x86_64-linux-gnu/c++/9/bits/gthr-default.h:35,
from /usr/include/x86_64-linux-gnu/c++/9/bits/gthr.h:148,
from /usr/include/c++/9/ext/atomicity.h:35,
from /usr/include/c++/9/bits/ios_base.h:39,
from /usr/include/c++/9/ios:42,
from /usr/include/c++/9/ostream:38,
from /usr/include/c++/9/iostream:39,
from Main.cc:1:
/usr/include/time.h:75:15: note: previous declaration ‘time_t time(time_t*)’
75 | extern time_t time (time_t *__timer) __THROW;
| ^~~~
Main.cc: In function ‘int getcondition(int)’:
Main.cc:7:15: warning: pointer to a function used in arithmetic [-Wpointer-arith]
7 | return time[t];
| ^
Main.cc:7:15: error: invalid conversion from ‘time_t (*)(time_t*) throw ()’ {aka ‘long int (*)(long int*)’} to ‘int’ [-fpermissive]
Main.cc: In function ‘int main()’:
Main.cc:50:8: warning: pointer to a function used in arithmetic [-Wpointer-arith]
50 | time[0]=1;
| ^
Main.cc:50:9: error: assignment of read-only location ‘* time’
50 | time[0]=1;
| ~~~~~~~^~
Main.cc:58:10: warning: pointer to a function used in arithmetic [-Wpointer-arith]
58 | time[j]=temp;
| ^
Main.cc:58:11: error: assignment of read-only location ‘*(time + ((sizetype)j))’
58 | time[j]=temp;
| ~~~~~~~^~~~~
Main.cc:46:7: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
46 | scanf("%d ",&n);
| ~~~~~^~~~~~~~~~
Main.cc:53:8: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
53 | scanf("%c %d ",&turn,&last);
| ~~~~~^~~~~~~~~~~~~~~~~~~~~~
Main.cc:62:7: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
62 | scanf("%d ",&n);
| ~~~~~^~~~~~~~~~
Main.cc:67:8: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
67 | scanf(" %c %d",&dir,&tim);
| ~~~~~^~~~~~~~~~~~~~~~~~~~