QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#499371#6728. To the ParkUmokWA 31ms4804kbC++20808b2024-07-31 13:26:352024-07-31 13:26:36

Judging History

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

  • [2024-07-31 13:26:36]
  • 评测
  • 测评结果:WA
  • 用时:31ms
  • 内存:4804kb
  • [2024-07-31 13:26:35]
  • 提交

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] && !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;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

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: 31ms
memory: 4804kb

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 
2 2 4 3 6 
2 2 4 3 6 
3 2 4 3 6 5 10 
3 2 4 3 6 5 10 
3 2 4 3 6 5 10 
3 2 4 3 6 5 10 
4 2 4 3 6 5 10 7 14 
4 2 4 3 6 5 10 7 14 
5 2 4 3 6 5 10 7 14 8 16 
5 2 4 3 6 5 10 7 14 8 16 
6 2 4 3 6 5 10 7 14 8 16 9 18 
6 2 4 3 6 5 10 7 14 8 16 9 18 
6 2 4 3 6 5 1...

result:

wrong answer Case #9: Participant has a worse answer