QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#189254 | #2701. Impressive Integers | Beevo | WA | 1ms | 3528kb | C++20 | 1.7kb | 2023-09-27 05:21:01 | 2023-09-27 05:21:03 |
Judging History
answer
#include <bits/stdc++.h>
#define el '\n'
#define Beevo ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
typedef long long ll;
typedef long double ld;
using namespace std;
mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count());
void testCase() {
int n;
cin >> n;
if (n == 2 || n == 3 || n == 5)
return cout << "impossible", void();
if (n == 1) {
cout << 1 << ' ' << 1 << ' ' << 1 << el;
cout << 'A' << ' ' << 0 << ' ' << 0 << ' ' << 'U';
return;
}
if (n & 1) {
cout << 1 << ' ' << (n - 3) / 4 << ' ' << 1 + (n - 3) / 4 << el;
for (int i = 0; i < n - 4; i++) {
if (i & 1)
cout << 'A' << ' ' << i / 2 << ' ' << 1 << ' ' << 'D' << el;
else
cout << 'A' << ' ' << i / 2 << ' ' << 0 << ' ' << 'U' << el;
}
cout << 'B' << ' ' << 0 << ' ' << 1 << ' ' << 'U' << el;
cout << 'B' << ' ' << (n - 3) / 4 << ' ' << 1 << ' ' << 'U' << el;
cout << 'B' << ' ' << 0 << ' ' << 1 + (n - 3) / 4 << ' ' << 'D' << el;
cout << 'B' << ' ' << 0 << ' ' << 1 + (n - 3) / 4 << ' ' << 'U' << el;
}
else {
cout << 1 << ' ' << n / 2 - 1 << ' ' << n / 2 << el;
for (int i = 0; i < n - 1; i++) {
if (i & 1)
cout << 'A' << ' ' << i / 2 << ' ' << 1 << ' ' << 'D' << el;
else
cout << 'A' << ' ' << i / 2 << ' ' << 0 << ' ' << 'U' << el;
}
cout << 'B' << ' ' << 0 << ' ' << 1 << ' ' << 'U';
}
}
signed main() {
Beevo
int t = 1;
// cin >> t;
while (t--)
testCase();
}
详细
Test #1:
score: 100
Accepted
time: 0ms
memory: 3428kb
input:
1
output:
1 1 1 A 0 0 U
result:
ok
Test #2:
score: 0
Accepted
time: 0ms
memory: 3424kb
input:
2
output:
impossible
result:
ok
Test #3:
score: 0
Accepted
time: 1ms
memory: 3512kb
input:
3
output:
impossible
result:
ok
Test #4:
score: 0
Accepted
time: 0ms
memory: 3508kb
input:
4
output:
1 1 2 A 0 0 U A 0 1 D A 1 0 U B 0 1 U
result:
ok
Test #5:
score: 0
Accepted
time: 0ms
memory: 3444kb
input:
5
output:
impossible
result:
ok
Test #6:
score: 0
Accepted
time: 0ms
memory: 3432kb
input:
6
output:
1 2 3 A 0 0 U A 0 1 D A 1 0 U A 1 1 D A 2 0 U B 0 1 U
result:
ok
Test #7:
score: -100
Wrong Answer
time: 1ms
memory: 3528kb
input:
7
output:
1 1 2 A 0 0 U A 0 1 D A 1 0 U B 0 1 U B 1 1 U B 0 2 D B 0 2 U
result:
wrong answer Triangle not contained within large triangle!