QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#499357#6728. To the ParkUmokWA 46ms4736kbC++20800b2024-07-31 13:16:202024-07-31 13:16:21

Judging History

你现在查看的是最新测评结果

  • [2024-07-31 13:16:21]
  • 评测
  • 测评结果:WA
  • 用时:46ms
  • 内存:4736kb
  • [2024-07-31 13:16:20]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
#define endl '\n'
const int N = 1e6 + 5;
#define int long long
#define MAX LONG_LONG_MAX
int ar[N];
void solve()
{
    int n;
    cin >> n;
    for (int i = 1; i <= n + 1; i++)
        ar[i] = 0;
    queue<int> q;
    for (int i = 2; i <= n / 2; i++)
    {
        if (!ar[i * 2])
        {
            ar[i] = 1;
            ar[i * 2] = 1;
            q.push(i);
            q.push(i * 2);
        }
    }
    cout << q.size() / 2 << " ";
    while (!q.empty())
    {
        cout << q.front() << " ";
        q.pop();
    }
    cout << endl;
}

signed main()
{
    ios::sync_with_stdio(0);
    cin.tie(0), cout.tie(0);
    int tcase;
    cin >> tcase;

    while (tcase--)
        solve();

    return 0;
}

詳細信息

Test #1:

score: 100
Accepted
time: 0ms
memory: 3592kb

input:

3
1
4
6

output:

0 
1 2 4 
2 2 4 3 6 

result:

ok 4 cases

Test #2:

score: -100
Wrong Answer
time: 46ms
memory: 4736kb

input:

1007
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101...

output:

0 
0 
0 
1 2 4 
1 2 4 
2 2 4 3 6 
2 2 4 3 6 
3 2 4 3 6 4 8 
3 2 4 3 6 4 8 
4 2 4 3 6 4 8 5 10 
4 2 4 3 6 4 8 5 10 
5 2 4 3 6 4 8 5 10 6 12 
5 2 4 3 6 4 8 5 10 6 12 
6 2 4 3 6 4 8 5 10 6 12 7 14 
6 2 4 3 6 4 8 5 10 6 12 7 14 
7 2 4 3 6 4 8 5 10 6 12 7 14 8 16 
7 2 4 3 6 4 8 5 10 6 12 7 14 8 16 
8 2 4...

result:

wrong answer Case #8: Duplicate person 4