Task: | Conspiracies everywhere |
Sender: | Sold days |
Submission time: | 2024-11-16 12:22:38 +0200 |
Language: | C++ (C++17) |
Status: | READY |
Result: | WRONG ANSWER |
test | verdict | time | |
---|---|---|---|
#1 | ACCEPTED | 0.00 s | details |
#2 | ACCEPTED | 0.00 s | details |
#3 | ACCEPTED | 0.00 s | details |
#4 | ACCEPTED | 0.00 s | details |
#5 | WRONG ANSWER | 0.00 s | details |
#6 | ACCEPTED | 0.00 s | details |
#7 | ACCEPTED | 0.00 s | details |
#8 | ACCEPTED | 0.00 s | details |
#9 | WRONG ANSWER | 0.00 s | details |
#10 | WRONG ANSWER | 0.00 s | details |
#11 | ACCEPTED | 0.00 s | details |
#12 | WRONG ANSWER | 0.00 s | details |
#13 | ACCEPTED | 0.00 s | details |
#14 | ACCEPTED | 0.00 s | details |
#15 | ACCEPTED | 0.00 s | details |
#16 | ACCEPTED | 0.00 s | details |
Code
#include <bits/stdc++.h>using namespace std;int main(){int n; long long q; cin >> n >> q;vector <long long> prev{q};for (int i = 2; i <= n; i ++) {vector <long long> cur(i);cur[0] = prev[0] / 2;for (int j = 1; j < i; j ++) {cur[j] = prev[j - 1] - cur[j - 1];}for (auto i : cur) {if (i <= 0) {cout << "The truth is out there";return 0;}}prev = cur;}for (auto i : prev) {cout << i << ' ';}return 0;}
Test details
Test 1
Verdict: ACCEPTED
input |
---|
3 8 |
correct output |
---|
5 1 1 |
user output |
---|
2 2 2 |
Test 2
Verdict: ACCEPTED
input |
---|
2 1 |
correct output |
---|
The truth is out there |
user output |
---|
The truth is out there |
Test 3
Verdict: ACCEPTED
input |
---|
1 1000000000000000000 |
correct output |
---|
1000000000000000000 |
user output |
---|
1000000000000000000 |
Test 4
Verdict: ACCEPTED
input |
---|
1 1 |
correct output |
---|
1 |
user output |
---|
1 |
Test 5
Verdict: WRONG ANSWER
input |
---|
60 1000000000000000000 |
correct output |
---|
423539247696576513 1 1 1 1 1 1... |
user output |
---|
The truth is out there |
Test 6
Verdict: ACCEPTED
input |
---|
10 512 |
correct output |
---|
1 1 1 1 1 1 1 1 1 1 |
user output |
---|
1 1 1 1 1 1 1 1 1 1 |
Test 7
Verdict: ACCEPTED
input |
---|
60 500000000000000000 |
correct output |
---|
The truth is out there |
user output |
---|
The truth is out there |
Test 8
Verdict: ACCEPTED
input |
---|
5 1000000000 |
correct output |
---|
999999985 1 1 1 1 |
user output |
---|
62500000 62500000 62500000 625... |
Test 9
Verdict: WRONG ANSWER
input |
---|
19 1000000000 |
correct output |
---|
999737857 1 1 1 1 1 1 1 1 1 1 ... |
user output |
---|
The truth is out there |
Test 10
Verdict: WRONG ANSWER
input |
---|
59 1000000000000000000 |
correct output |
---|
711769623848288257 1 1 1 1 1 1... |
user output |
---|
The truth is out there |
Test 11
Verdict: ACCEPTED
input |
---|
42 133713371337 |
correct output |
---|
The truth is out there |
user output |
---|
The truth is out there |
Test 12
Verdict: WRONG ANSWER
input |
---|
42 1337133713371337 |
correct output |
---|
1334934690115786 1 1 1 1 1 1 1... |
user output |
---|
The truth is out there |
Test 13
Verdict: ACCEPTED
input |
---|
2 2 |
correct output |
---|
1 1 |
user output |
---|
1 1 |
Test 14
Verdict: ACCEPTED
input |
---|
2 1000000000000000000 |
correct output |
---|
999999999999999999 1 |
user output |
---|
500000000000000000 50000000000... |
Test 15
Verdict: ACCEPTED
input |
---|
10 511 |
correct output |
---|
The truth is out there |
user output |
---|
The truth is out there |
Test 16
Verdict: ACCEPTED
input |
---|
10 513 |
correct output |
---|
2 1 1 1 1 1 1 1 1 1 |
user output |
---|
1 1 1 1 1 1 1 1 1 2 |