QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#135128 | #6631. Maximum Bitwise OR | Rd_rainydays# | Compile Error | / | / | C++14 | 332b | 2023-08-05 11:49:43 | 2023-08-05 11:49:46 |
Judging History
你现在查看的是最新测评结果
- [2023-08-10 23:21:45]
- System Update: QOJ starts to keep a history of the judgings of all the submissions.
- [2023-08-05 11:49:46]
- 评测
- 测评结果:Compile Error
- 用时:0ms
- 内存:0kb
- [2023-08-05 11:49:43]
- 提交
answer
101111
101111
001111
100000
011111
111111
最多两步可以弄出最大值。
只要看能不能一步弄出最大值即可。
零步可以直接计算或的值。
选择一个没有的位置
100100010
100011110
100111100
计算每个位置的1的个数
检查是否有一段0满足可以填补。
Details
answer.code:12:1: error: extended character 。 is not valid in an identifier 12 | 最多两步可以弄出最大值。 | ^ answer.code:13:1: error: extended character 。 is not valid in an identifier 13 | 只要看能不能一步弄出最大值即可。 | ^ answer.code:14:1: error: extended character 。 is not valid in an identifier 14 | 零步可以直接计算或的值。 | ^ answer.code:24:1: error: extended character 。 is not valid in an identifier 24 | 检查是否有一段0满足可以填补。 | ^ answer.code:1:1: error: expected unqualified-id before numeric constant 1 | 101111 | ^~~~~~