QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#226621#6809. Code With No Forces326173163qqom#AC ✓110ms6124kbC++202.8kb2023-10-26 11:04:462023-10-26 11:04:46

Judging History

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

  • [2023-10-26 11:04:46]
  • 评测
  • 测评结果:AC
  • 用时:110ms
  • 内存:6124kb
  • [2023-10-26 11:04:46]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
const int N = 400 + 1, M = 6;
int n, m;
struct node
{
    char c[5];
    int x, y;
    node()
    {
        c[0] = 'O';
    }
    void input()
    {
        scanf(" %c%c,%d/%d", c, c + 1, &x, &y);
    }
} a[N][M], ans[M];
#define P pair<int, int>
P pre[1 << M * 3];
int tag[1 << M * 3];
int main()
{
    scanf("%d%d", &n, &m);
    for (int i = 1; i <= n; i++)
        for (int j = 0; j < m; j++)
            a[i][j].input();
    for (int i = 1; i <= n; i++)
    {
        for (int j = 0; j < m; j++)
        {
            if (ans[j].c[0] != 'O')
                continue;
            if (a[i][j].x > ans[j].x)
                ans[j].x = a[i][j].x;
            if (a[i][j].y > ans[j].y)
                ans[j].y = a[i][j].y;
            if (a[i][j].c[0] != 'O')
                ans[j].c[0] = a[i][j].c[0];
        }
    }
    tag[0] = 1;
    int S = (1 << m * 3) - 1;
    queue<int> q;
    q.push(0);
    while (!tag[S])
    {
        int u = q.front();
        q.pop();
        for (int i = 1; i <= n; i++)
        {
            int v = u;
            for (int j = 0; j < m; j++)
            {
                if (v >> j * 3 & 1)
                    continue;
                if (a[i][j].x > ans[j].x) {
                    v = -1;
                    break;
                }
                if (a[i][j].y > ans[j].y) {
                    v = -1;
                    break;
                }
                if (a[i][j].x == ans[j].x)
                    v |= 1 << j * 3 + 1;
                if (a[i][j].y == ans[j].y)
                    v |= 1 << j * 3 + 2;
                if (a[i][j].c[0] != 'O')
                {
                    if (a[i][j].c[0] != ans[j].c[0])
                    {
                        v = -1;
                        break;
                    }
                    else
                    {
                        v |= 1 << j * 3;
                    }
                }
                else if (ans[j].c[0] == 'O') {
                    if ((v >> j * 3 & 7) == 6)
                        v |= 1 << j * 3;
                }
            }
            for (int j = 0; j < m; j++)
            {
                int x = v >> j * 3 & 7;
                if ((x & 1) && x != 7)
                {
                    v = -1;
                    break;
                }
            }
            // cout << v << '\n';
            if (v != -1 && !tag[v])
                pre[v] = P(u, i), tag[v] = 1, q.push(v);
        }
    }
    vector<int> out;
    while (S != 0)
        out.push_back(pre[S].second), S = pre[S].first;
    cout << out.size() << '\n';
    reverse(out.begin(), out.end());
    for (auto v : out)
        cout << v << ' ';
    return 0;
}

这程序好像有点Bug,我给组数据试试?

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 1ms
memory: 5736kb

input:

2 3
OK,1/1 OK,2/1 OK,2/2
WA,1/1 OK,1/1 TL,1000/1

output:

2
1 2 

result:

ok ok

Test #2:

score: 0
Accepted
time: 1ms
memory: 5764kb

input:

3 3
OK,1/1 OK,2/1 OK,1/2
OK,3/3 OK,1/2 OK,114/514
WA,999/999 TL,3000/2 ML,999/1024

output:

1
3 

result:

ok ok

Test #3:

score: 0
Accepted
time: 0ms
memory: 3700kb

input:

5 3
OK,0/0 OK,0/0 OK,0/0
WA,1/0 RE,0/0 OK,0/0
WA,0/0 WA,0/0 WA,0/0
OK,1/0 RE,0/0 OK,0/0
WA,2/2 RE,2/2 WA,2/2

output:

2
2 3 

result:

ok ok

Test #4:

score: 0
Accepted
time: 0ms
memory: 3764kb

input:

21 6
OK,0/34 OK,15/1 OK,0/1 OK,0/4 OK,0/1 OK,0/36
OK,0/34 OK,0/1 OK,15/1 OK,15/4 OK,0/1 OK,0/36
OK,0/34 OK,15/1 OK,0/1 OK,0/4 OK,15/1 OK,0/36
OK,0/34 OK,0/1 OK,0/1 OK,0/4 OK,15/1 OK,0/36
OK,0/34 OK,0/1 OK,15/1 OK,0/4 OK,0/1 OK,0/36
OK,0/34 OK,0/1 OK,0/1 OK,0/4 OK,0/1 OK,0/36
OK,0/34 OK,0/1 OK,0/1 OK...

output:

7
9 10 12 13 15 17 20 

result:

ok ok

Test #5:

score: 0
Accepted
time: 1ms
memory: 5992kb

input:

1 1
TL,10000/10000

output:

1
1 

result:

ok ok

Test #6:

score: 0
Accepted
time: 0ms
memory: 3940kb

input:

1 1
OK,0/0

output:

1
1 

result:

ok ok

Test #7:

score: 0
Accepted
time: 0ms
memory: 3688kb

input:

398 1
TL,10000/3499
OK,99/4999
WA,3899/2299
OK,7899/399
RE,2399/4399
OK,9499/4199
WA,7699/799
OK,7299/2099
OK,1999/9399
OK,2899/6999
OK,5899/4999
OK,4199/8499
OK,6399/4399
RE,2699/4399
RE,9699/9799
TL,10000/1399
ML,9499/10000
OK,5599/4499
RE,3699/5699
OK,1799/4099
ML,1399/10000
ML,2199/10000
OK,2599...

output:

1
1 

result:

ok ok

Test #8:

score: 0
Accepted
time: 0ms
memory: 3648kb

input:

398 2
ML,0/10000 OK,1666/1666
ML,3333/10000 OK,3333/0
OK,0/8332 WA,3333/0
TL,10000/3333 OK,1666/3333
OK,3333/1666 OK,4999/4999
ML,8332/10000 RE,6666/3333
OK,8332/8332 OK,8332/0
OK,4999/1666 OK,3333/0
OK,1666/3333 OK,3333/1666
OK,4999/8332 OK,6666/3333
OK,4999/6666 OK,8332/4999
RE,3333/1666 OK,3333/6...

output:

2
1 3 

result:

ok ok

Test #9:

score: 0
Accepted
time: 0ms
memory: 3944kb

input:

398 3
OK,2199/7699 OK,6599/2399 WA,8199/1499
ML,2299/10000 OK,6099/4199 ML,599/10000
ML,699/10000 WA,4299/1599 OK,6099/8399
TL,10000/3199 TL,10000/5599 OK,9699/2999
RE,9799/599 WA,4999/6199 OK,9599/9899
OK,899/8899 OK,4499/7499 OK,3199/5899
TL,10000/3599 WA,8299/8299 RE,6199/6999
RE,5599/4299 OK,709...

output:

3
1 2 3 

result:

ok ok

Test #10:

score: 0
Accepted
time: 1ms
memory: 6040kb

input:

398 4
OK,0/6666 OK,1666/1666 WA,3333/0 ML,8332/10000
OK,3333/8332 OK,0/4999 ML,3333/10000 OK,0/6666
OK,6666/3333 TL,10000/3333 OK,0/0 OK,1666/1666
OK,3333/3333 WA,4999/3333 WA,4999/0 OK,4999/0
OK,1666/0 OK,0/6666 ML,4999/10000 OK,3333/8332
OK,3333/0 ML,3333/10000 OK,8332/6666 OK,0/3333
OK,0/4999 ML,...

output:

3
1 48 150 

result:

ok ok

Test #11:

score: 0
Accepted
time: 1ms
memory: 3864kb

input:

398 5
OK,999/8799 OK,6399/9399 OK,7699/4399 RE,4099/9799 OK,7099/4399
TL,10000/7699 OK,2499/4299 OK,2799/2199 ML,7099/10000 OK,8499/8099
OK,3799/399 OK,9599/4099 WA,3299/8699 OK,5299/2399 OK,5699/799
ML,4899/10000 OK,299/8899 OK,7199/299 OK,9899/9499 RE,9399/8699
WA,2999/6699 OK,5499/3499 OK,899/499...

output:

6
1 3 189 4 104 182 

result:

ok ok

Test #12:

score: 0
Accepted
time: 0ms
memory: 3988kb

input:

398 6
WA,0/3333 WA,3333/3333 OK,4999/3333 OK,6666/4999 OK,8332/8332 OK,4999/3333
OK,1666/4999 OK,8332/4999 OK,6666/0 OK,4999/4999 ML,4999/10000 RE,1666/6666
TL,10000/4999 ML,6666/10000 TL,10000/4999 OK,8332/6666 WA,0/4999 OK,1666/0
OK,0/1666 OK,0/3333 OK,8332/4999 OK,0/6666 OK,4999/6666 OK,1666/3333...

output:

4
1 2 3 7 

result:

ok ok

Test #13:

score: 0
Accepted
time: 1ms
memory: 5732kb

input:

399 1
TL,10000/3299
OK,2299/1099
ML,99/10000
ML,6199/10000
RE,1199/2099
OK,4699/6199
OK,2899/5099
ML,7899/10000
RE,299/1699
TL,10000/1399
TL,10000/8099
ML,6199/10000
OK,1799/8599
OK,6899/8999
OK,3899/6999
RE,3599/8799
TL,10000/399
TL,10000/8699
ML,199/10000
ML,4499/10000
WA,2799/5499
OK,4599/9299
RE...

output:

1
1 

result:

ok ok

Test #14:

score: 0
Accepted
time: 0ms
memory: 3688kb

input:

399 2
OK,4999/0 OK,3333/1666
OK,8332/3333 OK,3333/0
OK,1666/0 OK,8332/6666
OK,1666/1666 OK,1666/6666
OK,3333/4999 OK,1666/1666
OK,1666/6666 OK,6666/1666
OK,3333/1666 OK,4999/0
WA,4999/0 OK,0/6666
OK,1666/6666 OK,8332/8332
WA,0/4999 OK,3333/8332
TL,10000/0 RE,4999/0
ML,1666/10000 OK,4999/6666
OK,6666...

output:

2
9 194 

result:

ok ok

Test #15:

score: 0
Accepted
time: 1ms
memory: 3652kb

input:

399 3
OK,9499/3599 RE,8199/8899 OK,8999/599
OK,5499/4399 OK,9299/2199 ML,8999/10000
OK,5099/9899 OK,6599/1199 ML,8899/10000
OK,8999/3899 OK,3699/8699 OK,9099/699
OK,0/399 OK,7699/5199 TL,10000/7699
OK,6999/9399 OK,9699/3399 TL,10000/2899
OK,5799/6899 OK,1699/9699 OK,6199/199
RE,2499/8399 OK,2999/799...

output:

3
1 3 8 

result:

ok ok

Test #16:

score: 0
Accepted
time: 0ms
memory: 6032kb

input:

399 4
OK,4999/4999 OK,8332/3333 TL,10000/1666 OK,1666/6666
ML,8332/10000 WA,0/6666 OK,4999/4999 OK,0/8332
OK,3333/0 OK,4999/6666 OK,3333/8332 OK,0/3333
OK,4999/1666 OK,4999/6666 OK,1666/0 RE,8332/3333
OK,6666/6666 OK,6666/3333 TL,10000/4999 ML,0/10000
OK,6666/4999 OK,6666/0 OK,8332/3333 OK,6666/8332...

output:

3
1 2 4 

result:

ok ok

Test #17:

score: 0
Accepted
time: 1ms
memory: 3724kb

input:

399 5
OK,299/9799 OK,1099/9399 OK,6099/6899 WA,7299/6999 OK,9199/1499
TL,10000/999 TL,10000/8499 OK,3999/9599 OK,5799/99 OK,9399/3799
ML,6399/10000 OK,8499/4699 OK,599/9399 OK,2399/2499 OK,6299/7499
OK,7899/5899 RE,6899/4099 OK,6399/2299 WA,3599/1499 OK,2299/6799
ML,3199/10000 OK,8099/4099 WA,1399/3...

output:

4
1 2 9 95 

result:

ok ok

Test #18:

score: 0
Accepted
time: 1ms
memory: 3720kb

input:

399 6
OK,4999/4999 OK,0/1666 OK,3333/4999 OK,4999/0 OK,4999/3333 TL,10000/8332
OK,3333/1666 RE,3333/3333 RE,3333/3333 ML,8332/10000 OK,1666/6666 RE,8332/0
OK,1666/6666 WA,4999/6666 TL,10000/6666 OK,1666/1666 OK,4999/0 OK,6666/3333
OK,1666/8332 ML,3333/10000 OK,6666/0 TL,10000/4999 WA,4999/1666 WA,83...

output:

4
1 2 4 84 

result:

ok ok

Test #19:

score: 0
Accepted
time: 0ms
memory: 3708kb

input:

400 1
RE,9899/5999
ML,0/10000
OK,5299/399
OK,5199/7099
OK,599/0
OK,9299/2199
OK,8099/4099
OK,9699/2399
WA,399/7499
OK,9599/4899
WA,9099/0
ML,1599/10000
TL,10000/999
OK,8599/6799
OK,2099/8999
OK,8699/1699
OK,4499/3299
OK,7899/8899
OK,7099/8199
ML,8799/10000
OK,599/9699
OK,7999/5699
OK,9499/7299
OK,11...

output:

1
1 

result:

ok ok

Test #20:

score: 0
Accepted
time: 1ms
memory: 5756kb

input:

400 2
WA,1666/8332 OK,8332/1666
OK,6666/1666 OK,1666/8332
TL,10000/6666 OK,8332/3333
ML,0/10000 OK,3333/3333
ML,1666/10000 OK,4999/1666
OK,4999/1666 OK,6666/8332
TL,10000/6666 OK,3333/1666
ML,4999/10000 OK,0/6666
WA,4999/6666 WA,0/3333
WA,3333/1666 WA,4999/1666
ML,4999/10000 OK,6666/6666
OK,3333/833...

output:

2
1 30 

result:

ok ok

Test #21:

score: 0
Accepted
time: 1ms
memory: 5980kb

input:

400 3
OK,1999/799 OK,5899/5099 OK,4399/9499
TL,10000/6299 OK,7699/1099 OK,1999/3599
TL,10000/2599 RE,1199/799 OK,9099/4499
RE,4799/599 ML,9199/10000 ML,6099/10000
OK,3699/6499 OK,6799/6499 OK,1699/4599
OK,6599/399 OK,6799/799 OK,6999/8599
OK,6099/2599 TL,10000/1299 TL,10000/7599
OK,99/99 RE,8899/709...

output:

4
1 2 3 4 

result:

ok ok

Test #22:

score: 0
Accepted
time: 1ms
memory: 3776kb

input:

400 4
OK,4999/6666 OK,8332/3333 TL,10000/0 OK,0/8332
RE,6666/4999 OK,3333/6666 OK,8332/6666 OK,4999/1666
OK,3333/6666 OK,4999/3333 OK,8332/4999 OK,1666/0
ML,8332/10000 OK,6666/0 OK,1666/6666 OK,1666/8332
OK,3333/4999 OK,3333/0 OK,6666/0 OK,1666/8332
OK,3333/0 OK,6666/4999 OK,8332/6666 OK,0/6666
OK,1...

output:

4
1 2 252 26 

result:

ok ok

Test #23:

score: 0
Accepted
time: 1ms
memory: 5760kb

input:

400 5
OK,5099/2699 OK,6199/4799 RE,0/3499 ML,99/10000 WA,4299/3899
OK,2399/8099 RE,9799/5999 RE,999/3599 OK,4199/4399 OK,7899/5999
WA,1599/699 OK,6999/3999 OK,1499/599 OK,8899/5899 OK,3299/1499
OK,8099/8399 OK,7299/7799 WA,4699/6099 OK,5099/1799 OK,3599/0
WA,6199/7499 OK,4699/1799 OK,9799/3799 ML,33...

output:

3
1 2 3 

result:

ok ok

Test #24:

score: 0
Accepted
time: 9ms
memory: 4512kb

input:

400 6
OK,4999/8332 OK,3333/4999 OK,3333/0 OK,8332/8332 OK,1666/3333 OK,4999/4999
OK,1666/8332 OK,8332/0 OK,8332/6666 OK,1666/3333 ML,4999/10000 OK,1666/6666
OK,8332/3333 RE,1666/0 OK,1666/8332 ML,6666/10000 OK,4999/8332 OK,4999/0
OK,4999/8332 OK,1666/1666 OK,3333/0 OK,4999/6666 OK,1666/8332 OK,3333/...

output:

5
1 2 121 207 12 

result:

ok ok

Test #25:

score: 0
Accepted
time: 11ms
memory: 6112kb

input:

385 5
OK,9899/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/9899 OK,0/0 OK,0/0 OK,0/0 OK,0/0
RE,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,1399/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/9899 OK,0/0 OK,0/0 OK,0/0
OK,0/0 WA,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,9899/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,0/9899 OK,0/0 OK,...

output:

12
1 4 5 6 8 10 11 14 111 3 138 41 

result:

ok ok

Test #26:

score: 0
Accepted
time: 35ms
memory: 5088kb

input:

385 6
OK,8332/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/8332 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
WA,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,1666/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/8332 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 WA,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,6666/0 OK,0/0...

output:

7
11 208 204 183 326 205 271 

result:

ok ok

Test #27:

score: 0
Accepted
time: 13ms
memory: 4244kb

input:

386 5
OK,9899/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/9899 OK,0/0 OK,0/0 OK,0/0 OK,0/0
RE,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,9899/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/9899 OK,0/0 OK,0/0 OK,0/0
OK,0/0 RE,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,9899/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,0/7699 OK,0/0 OK,...

output:

14
1 2 3 4 5 6 7 8 9 10 11 13 14 165 

result:

ok ok

Test #28:

score: 0
Accepted
time: 44ms
memory: 5328kb

input:

386 6
OK,8332/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/8332 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
WA,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,8332/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 RE,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,8332/0 OK,0/0 OK...

output:

7
59 6 119 127 338 12 385 

result:

ok ok

Test #29:

score: 0
Accepted
time: 13ms
memory: 5832kb

input:

387 5
OK,9899/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/7899 OK,0/0 OK,0/0 OK,0/0 OK,0/0
RE,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,9899/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/9899 OK,0/0 OK,0/0 OK,0/0
OK,0/0 WA,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,9899/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,0/9899 OK,0/0 OK,...

output:

11
2 5 8 13 14 15 243 3 23 189 149 

result:

ok ok

Test #30:

score: 0
Accepted
time: 92ms
memory: 5116kb

input:

387 6
OK,8332/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/8332 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
RE,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,8332/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/8332 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 WA,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,8332/0 OK,0/0...

output:

6
14 278 340 362 188 344 

result:

ok ok

Test #31:

score: 0
Accepted
time: 12ms
memory: 6120kb

input:

388 5
OK,9899/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/9899 OK,0/0 OK,0/0 OK,0/0 OK,0/0
WA,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,8599/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/9899 OK,0/0 OK,0/0 OK,0/0
OK,0/0 WA,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,9899/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,0/9899 OK,0/0 OK,...

output:

12
1 2 5 7 8 9 10 11 12 171 186 36 

result:

ok ok

Test #32:

score: 0
Accepted
time: 98ms
memory: 5032kb

input:

388 6
OK,8332/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/8332 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
WA,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,8332/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/8332 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 WA,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,3333/0 OK,0/0...

output:

6
28 274 9 124 191 294 

result:

ok ok

Test #33:

score: 0
Accepted
time: 10ms
memory: 6112kb

input:

389 5
OK,9899/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/6799 OK,0/0 OK,0/0 OK,0/0 OK,0/0
RE,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,9899/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/9899 OK,0/0 OK,0/0 OK,0/0
OK,0/0 WA,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,9899/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,0/999 OK,0/0 OK,0...

output:

12
1 2 3 4 5 7 13 14 299 9 112 268 

result:

ok ok

Test #34:

score: 0
Accepted
time: 10ms
memory: 4424kb

input:

389 6
OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/4999 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
RE,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,8332/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/8332 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 WA,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,8332/0 OK,0/0 OK...

output:

7
14 15 242 3 295 134 28 

result:

ok ok

Test #35:

score: 0
Accepted
time: 13ms
memory: 5788kb

input:

390 5
OK,9899/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/9899 OK,0/0 OK,0/0 OK,0/0 OK,0/0
RE,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,9899/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/9899 OK,0/0 OK,0/0 OK,0/0
OK,0/0 RE,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,2999/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,0/9899 OK,0/0 OK,...

output:

12
1 2 4 7 8 9 11 13 355 328 327 12 

result:

ok ok

Test #36:

score: 0
Accepted
time: 5ms
memory: 4152kb

input:

390 6
OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/8332 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
WA,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,8332/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 RE,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,8332/0 OK,0/0 OK,0/...

output:

8
4 6 17 18 283 197 40 41 

result:

ok ok

Test #37:

score: 0
Accepted
time: 13ms
memory: 3880kb

input:

391 5
OK,9899/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/9899 OK,0/0 OK,0/0 OK,0/0 OK,0/0
WA,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,9899/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/9899 OK,0/0 OK,0/0 OK,0/0
OK,0/0 RE,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,9899/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,0/9899 OK,0/0 OK,...

output:

11
1 5 7 11 13 14 79 176 12 281 6 

result:

ok ok

Test #38:

score: 0
Accepted
time: 16ms
memory: 4488kb

input:

391 6
OK,8332/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/8332 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
RE,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,8332/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/1666 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 RE,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,8332/0 OK,0/0...

output:

8
7 9 13 15 210 206 231 181 

result:

ok ok

Test #39:

score: 0
Accepted
time: 14ms
memory: 6084kb

input:

392 5
OK,9899/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/9899 OK,0/0 OK,0/0 OK,0/0 OK,0/0
RE,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,9899/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/9899 OK,0/0 OK,0/0 OK,0/0
OK,0/0 RE,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,9899/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,0/9899 OK,0/0 OK,...

output:

14
1 2 3 4 5 6 7 8 10 11 13 14 15 315 

result:

ok ok

Test #40:

score: 0
Accepted
time: 110ms
memory: 5088kb

input:

392 6
OK,8332/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/8332 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
WA,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,8332/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/8332 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 RE,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,8332/0 OK,0/0...

output:

6
1 378 12 354 385 30 

result:

ok ok

Test #41:

score: 0
Accepted
time: 14ms
memory: 4208kb

input:

393 5
OK,9299/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/9899 OK,0/0 OK,0/0 OK,0/0 OK,0/0
RE,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,9899/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/9899 OK,0/0 OK,0/0 OK,0/0
OK,0/0 WA,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,9899/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,0/9899 OK,0/0 OK,...

output:

12
1 2 4 5 10 11 13 14 15 135 238 263 

result:

ok ok

Test #42:

score: 0
Accepted
time: 58ms
memory: 5108kb

input:

393 6
OK,8332/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/8332 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
WA,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,8332/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/8332 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 WA,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,1666/0 OK,0/0...

output:

5
325 9 351 47 208 

result:

ok ok

Test #43:

score: 0
Accepted
time: 7ms
memory: 3960kb

input:

394 5
OK,4399/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/9899 OK,0/0 OK,0/0 OK,0/0 OK,0/0
WA,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,1299/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/9899 OK,0/0 OK,0/0 OK,0/0
OK,0/0 RE,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,9899/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,0/1099 OK,0/0 OK,...

output:

11
1 2 3 4 5 7 8 312 65 378 142 

result:

ok ok

Test #44:

score: 0
Accepted
time: 87ms
memory: 5008kb

input:

394 6
OK,8332/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/4999 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
RE,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,8332/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/8332 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 RE,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,8332/0 OK,0/0...

output:

7
5 389 360 134 157 322 23 

result:

ok ok

Test #45:

score: 0
Accepted
time: 16ms
memory: 6116kb

input:

395 5
OK,9899/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/9899 OK,0/0 OK,0/0 OK,0/0 OK,0/0
WA,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,9899/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/9899 OK,0/0 OK,0/0 OK,0/0
OK,0/0 WA,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,9899/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,0/9899 OK,0/0 OK,...

output:

10
1 4 5 8 86 94 15 176 198 383 

result:

ok ok

Test #46:

score: 0
Accepted
time: 64ms
memory: 5008kb

input:

395 6
OK,8332/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/8332 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
RE,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,8332/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/8332 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 RE,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,8332/0 OK,0/0...

output:

6
47 191 15 89 174 6 

result:

ok ok

Test #47:

score: 0
Accepted
time: 13ms
memory: 3952kb

input:

396 5
OK,9699/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/9899 OK,0/0 OK,0/0 OK,0/0 OK,0/0
RE,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,9899/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/9899 OK,0/0 OK,0/0 OK,0/0
OK,0/0 WA,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,9899/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,0/9899 OK,0/0 OK,...

output:

11
1 2 4 5 11 13 14 15 25 243 317 

result:

ok ok

Test #48:

score: 0
Accepted
time: 43ms
memory: 5064kb

input:

396 6
OK,8332/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/8332 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
RE,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,8332/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/8332 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 RE,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,8332/0 OK,0/0...

output:

6
321 376 278 68 120 3 

result:

ok ok

Test #49:

score: 0
Accepted
time: 11ms
memory: 3916kb

input:

397 5
OK,7499/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/5299 OK,0/0 OK,0/0 OK,0/0 OK,0/0
RE,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,9899/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/9899 OK,0/0 OK,0/0 OK,0/0
OK,0/0 WA,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,6499/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,0/9899 OK,0/0 OK,...

output:

13
1 2 3 4 8 10 11 12 13 14 15 258 43 

result:

ok ok

Test #50:

score: 0
Accepted
time: 7ms
memory: 4348kb

input:

397 6
OK,1666/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/8332 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
RE,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,8332/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/3333 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 WA,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,4999/0 OK,0/0...

output:

6
17 89 3 319 136 380 

result:

ok ok

Test #51:

score: 0
Accepted
time: 15ms
memory: 6124kb

input:

398 5
OK,9899/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/7699 OK,0/0 OK,0/0 OK,0/0 OK,0/0
WA,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,9899/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/9899 OK,0/0 OK,0/0 OK,0/0
OK,0/0 WA,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,9899/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,0/9899 OK,0/0 OK,...

output:

10
1 5 11 14 330 12 327 15 370 9 

result:

ok ok

Test #52:

score: 0
Accepted
time: 65ms
memory: 5000kb

input:

398 6
OK,8332/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/8332 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
RE,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,8332/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/8332 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 RE,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,8332/0 OK,0/0...

output:

8
2 383 9 15 69 208 3 60 

result:

ok ok

Test #53:

score: 0
Accepted
time: 12ms
memory: 5848kb

input:

399 5
OK,9899/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/8099 OK,0/0 OK,0/0 OK,0/0 OK,0/0
WA,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,9899/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/9899 OK,0/0 OK,0/0 OK,0/0
OK,0/0 RE,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,9899/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,0/9899 OK,0/0 OK,...

output:

12
1 2 4 5 6 8 11 13 14 15 238 392 

result:

ok ok

Test #54:

score: 0
Accepted
time: 50ms
memory: 5056kb

input:

399 6
OK,8332/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/8332 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
RE,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,1666/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/8332 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 RE,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,8332/0 OK,0/0...

output:

8
2 97 18 30 12 199 203 3 

result:

ok ok

Test #55:

score: 0
Accepted
time: 14ms
memory: 5856kb

input:

400 5
OK,9899/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/9899 OK,0/0 OK,0/0 OK,0/0 OK,0/0
RE,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,9899/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/6599 OK,0/0 OK,0/0 OK,0/0
OK,0/0 WA,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,9899/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,0/9899 OK,0/0 OK,...

output:

11
1 2 7 10 11 13 55 15 128 98 367 

result:

ok ok

Test #56:

score: 0
Accepted
time: 21ms
memory: 5060kb

input:

400 6
OK,8332/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
RE,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,1666/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/3333 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 WA,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,8332/0 OK,0/0 OK...

output:

7
33 3 135 57 18 239 155 

result:

ok ok

Test #57:

score: 0
Accepted
time: 0ms
memory: 5316kb

input:

18 6
OK,9899/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/199 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
WA,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,9899/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/9899 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 WA,0/0 OK,0/0 OK,0/0 OK,0/0 OK,0/0
OK,0/0 OK,0/0 OK,9899/0 OK,0/0 O...

output:

18
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 

result:

ok ok