QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#419509#8674. Riddle of the SphinxMilanAC ✓1ms3880kbC++141.5kb2024-05-24 00:20:532024-05-24 00:20:53

Judging History

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

  • [2024-05-24 00:20:53]
  • 评测
  • 测评结果:AC
  • 用时:1ms
  • 内存:3880kb
  • [2024-05-24 00:20:53]
  • 提交

answer

#include <bits/stdc++.h>
#define MULTI \
    int _;    \
    cin >> _; \
    while (_--)
#define fi first
#define se second
#define pb(a) push_back(a)
#define rep(i, n) for (int i = 0; i < n; i++)
#define reps(i, n, m) for (int i = n; i <= m; i++)
#define repsv(i, n, m) for (int i = n; i >= m; i--)
#define vsz(a) (int)(a.size())
#define mp(a, b) make_pair(a, b)
#define all(a) a.begin(), a.end()

using namespace std;

typedef pair<double, double> pdd;
typedef pair<int, int> pii;
typedef vector<bool> vb;
typedef vector<int> vi;
typedef long long int ll;
typedef long double ld;
typedef vector<ll> vll;

#ifdef LOCAL
#include "debugs.hpp"
#else
#define dbg(...) 0
#endif

void affiche(int a, int b, int c){
    cout << a << ' ' << b << ' ' << c << '\n';
}

void solve()
{
    vi q(6);
    vector<string> reqs = {
        "1 0 0",
        "0 1 0",
        "0 0 1",
        "1 1 1",
        "1 2 3"
    };
    rep(i, 5){
        cout << reqs[i] << '\n';
        fflush(stdout);
        cin >> q[i+1];
    }
    if(q[1]+q[2]+q[3] == q[4])
        affiche(q[1], q[2], q[3]);
    else if(q[1] + 2*q[2] + 3*q[3] == q[5])
        affiche(q[1], q[2], q[3]);
    else if(2*q[1] + q[2] + q[5] == 3*q[4])
        affiche(q[1], q[2], q[4]-q[2]-q[1]);
    else if(q[1]-q[3]+q[5] == 2*q[4])
        affiche(q[1], q[4]-q[1]-q[3], q[3]);
    else
        affiche(q[4]-q[2]-q[3], q[2], q[3]);
}

int main()
{
    ios_base::sync_with_stdio(false);
    // MULTI
    solve();
}

詳細信息

Test #1:

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

input:

1
2
3
6
14

output:

1 0 0
0 1 0
0 0 1
1 1 1
1 2 3
1 2 3

result:

ok correct!

Test #2:

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

input:

9998
1
1
10000
10003

output:

1 0 0
0 1 0
0 0 1
1 1 1
1 2 3
9998 1 1

result:

ok correct!

Test #3:

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

input:

3333
3333
3333
9999
19998

output:

1 0 0
0 1 0
0 0 1
1 1 1
1 2 3
3333 3333 3333

result:

ok correct!

Test #4:

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

input:

892
503
712
2108
4035

output:

1 0 0
0 1 0
0 0 1
1 1 1
1 2 3
893 503 712

result:

ok correct!

Test #5:

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

input:

868
365
947
2182
4443

output:

1 0 0
0 1 0
0 0 1
1 1 1
1 2 3
868 367 947

result:

ok correct!

Test #6:

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

input:

684
827
794
2304
4717

output:

1 0 0
0 1 0
0 0 1
1 1 1
1 2 3
684 827 793

result:

ok correct!

Test #7:

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

input:

308
23
440
769
1674

output:

1 0 0
0 1 0
0 0 1
1 1 1
1 2 3
308 23 440

result:

ok correct!

Test #8:

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

input:

705
910
341
1956
3549

output:

1 0 0
0 1 0
0 0 1
1 1 1
1 2 3
705 910 341

result:

ok correct!

Test #9:

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

input:

1482
1285
299
3065
4948

output:

1 0 0
0 1 0
0 0 1
1 1 1
1 2 3
1481 1285 299

result:

ok correct!

Test #10:

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

input:

1516
3576
839
5930
11183

output:

1 0 0
0 1 0
0 0 1
1 1 1
1 2 3
1516 3575 839

result:

ok correct!

Test #11:

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

input:

2254
132
1126
3513
5899

output:

1 0 0
0 1 0
0 0 1
1 1 1
1 2 3
2254 132 1127

result:

ok correct!

Test #12:

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

input:

801
38
56
894
1045

output:

1 0 0
0 1 0
0 0 1
1 1 1
1 2 3
801 38 56

result:

ok correct!

Test #13:

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

input:

1004
1248
3876
6128
15127

output:

1 0 0
0 1 0
0 0 1
1 1 1
1 2 3
1004 1248 3876

result:

ok correct!

Test #14:

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

input:

2011
3884
1618
7515
14635

output:

1 0 0
0 1 0
0 0 1
1 1 1
1 2 3
2013 3884 1618

result:

ok correct!

Test #15:

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

input:

1256
6632
214
8103
15164

output:

1 0 0
0 1 0
0 0 1
1 1 1
1 2 3
1256 6633 214

result:

ok correct!

Test #16:

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

input:

805
4142
694
5640
11168

output:

1 0 0
0 1 0
0 0 1
1 1 1
1 2 3
805 4142 693

result:

ok correct!

Test #17:

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

input:

731
4440
1054
6223
12773

output:

1 0 0
0 1 0
0 0 1
1 1 1
1 2 3
731 4440 1054

result:

ok correct!

Test #18:

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

input:

445
3442
4035
7922
19435

output:

1 0 0
0 1 0
0 0 1
1 1 1
1 2 3
445 3442 4035

result:

ok correct!

Test #19:

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

input:

1750
2
3
6
14

output:

1 0 0
0 1 0
0 0 1
1 1 1
1 2 3
1 2 3

result:

ok correct!

Test #20:

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

input:

1
2
3
6
14

output:

1 0 0
0 1 0
0 0 1
1 1 1
1 2 3
1 2 3

result:

ok correct!

Test #21:

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

input:

1
2
3
6
14

output:

1 0 0
0 1 0
0 0 1
1 1 1
1 2 3
1 2 3

result:

ok correct!

Test #22:

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

input:

1
2
3
8664
14

output:

1 0 0
0 1 0
0 0 1
1 1 1
1 2 3
1 2 3

result:

ok correct!

Test #23:

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

input:

1
2
3
6
11

output:

1 0 0
0 1 0
0 0 1
1 1 1
1 2 3
1 2 3

result:

ok correct!

Test #24:

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

input:

1633
1
1
10000
10003

output:

1 0 0
0 1 0
0 0 1
1 1 1
1 2 3
9998 1 1

result:

ok correct!

Test #25:

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

input:

9998
1
1
10000
10003

output:

1 0 0
0 1 0
0 0 1
1 1 1
1 2 3
9998 1 1

result:

ok correct!

Test #26:

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

input:

9998
1
671
10000
10003

output:

1 0 0
0 1 0
0 0 1
1 1 1
1 2 3
9998 1 1

result:

ok correct!

Test #27:

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

input:

9998
1
1
9999
10003

output:

1 0 0
0 1 0
0 0 1
1 1 1
1 2 3
9998 1 1

result:

ok correct!

Test #28:

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

input:

9998
1
1
10000
14730

output:

1 0 0
0 1 0
0 0 1
1 1 1
1 2 3
9998 1 1

result:

ok correct!

Test #29:

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

input:

3332
3333
3333
9999
19998

output:

1 0 0
0 1 0
0 0 1
1 1 1
1 2 3
3333 3333 3333

result:

ok correct!

Test #30:

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

input:

3333
3332
3333
9999
19998

output:

1 0 0
0 1 0
0 0 1
1 1 1
1 2 3
3333 3333 3333

result:

ok correct!

Test #31:

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

input:

3333
3333
3333
9999
19998

output:

1 0 0
0 1 0
0 0 1
1 1 1
1 2 3
3333 3333 3333

result:

ok correct!

Test #32:

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

input:

3333
3333
3333
10000
19998

output:

1 0 0
0 1 0
0 0 1
1 1 1
1 2 3
3333 3333 3333

result:

ok correct!

Test #33:

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

input:

3333
3333
3333
9999
20001

output:

1 0 0
0 1 0
0 0 1
1 1 1
1 2 3
3333 3333 3333

result:

ok correct!

Test #34:

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

input:

548
588
724
1855
3891

output:

1 0 0
0 1 0
0 0 1
1 1 1
1 2 3
543 588 724

result:

ok correct!

Test #35:

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

input:

780
1559
783
2524
5051

output:

1 0 0
0 1 0
0 0 1
1 1 1
1 2 3
780 961 783

result:

ok correct!

Test #36:

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

input:

690
189
313
1191
2004

output:

1 0 0
0 1 0
0 0 1
1 1 1
1 2 3
690 189 312

result:

ok correct!

Test #37:

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

input:

97
289
971
1358
3588

output:

1 0 0
0 1 0
0 0 1
1 1 1
1 2 3
97 289 971

result:

ok correct!

Test #38:

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

input:

298
118
177
593
8675

output:

1 0 0
0 1 0
0 0 1
1 1 1
1 2 3
298 118 177

result:

ok correct!

Test #39:

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

input:

2974
1358
2553
6885
13349

output:

1 0 0
0 1 0
0 0 1
1 1 1
1 2 3
2974 1358 2553

result:

ok correct!

Test #40:

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

input:

4209
360
3000
9367
17525

output:

1 0 0
0 1 0
0 0 1
1 1 1
1 2 3
4209 2158 3000

result:

ok correct!

Test #41:

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

input:

1199
99
4408
5706
14621

output:

1 0 0
0 1 0
0 0 1
1 1 1
1 2 3
1199 99 4408

result:

ok correct!

Test #42:

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

input:

3601
167
1004
4773
6947

output:

1 0 0
0 1 0
0 0 1
1 1 1
1 2 3
3601 167 1004

result:

ok correct!

Test #43:

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

input:

2721
2111
2489
7321
14407

output:

1 0 0
0 1 0
0 0 1
1 1 1
1 2 3
2721 2111 2489

result:

ok correct!

Test #44:

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

input:

551
203
5220
9120
19763

output:

1 0 0
0 1 0
0 0 1
1 1 1
1 2 3
3697 203 5220

result:

ok correct!

Test #45:

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

input:

1481
1259
1264
4970
9723

output:

1 0 0
0 1 0
0 0 1
1 1 1
1 2 3
1481 2225 1264

result:

ok correct!

Test #46:

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

input:

4769
1552
235
6712
9046

output:

1 0 0
0 1 0
0 0 1
1 1 1
1 2 3
4769 1552 391

result:

ok correct!

Test #47:

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

input:

1620
3589
1642
6852
13724

output:

1 0 0
0 1 0
0 0 1
1 1 1
1 2 3
1620 3589 1642

result:

ok correct!

Test #48:

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

input:

1136
6652
800
8588
16841

output:

1 0 0
0 1 0
0 0 1
1 1 1
1 2 3
1136 6652 800

result:

ok correct!

Extra Test:

score: 0
Extra Test Passed