CSES - HIIT Open 2024 - Results
Submission details
Task:Conspiracies everywhere
Sender:Pynamic Drogramming
Submission time:2024-11-16 13:08:13 +0200
Language:C++ (C++20)
Status:READY
Result:
Test results
testverdicttime
#1ACCEPTED0.00 sdetails
#2ACCEPTED0.00 sdetails
#30.00 sdetails
#40.00 sdetails
#50.00 sdetails
#60.00 sdetails
#70.00 sdetails
#80.00 sdetails
#90.00 sdetails
#100.00 sdetails
#110.00 sdetails
#120.00 sdetails
#130.00 sdetails
#140.00 sdetails
#15ACCEPTED0.00 sdetails
#160.00 sdetails

Code

#include <bits/stdc++.h>

using namespace std;

int main()
{
    int n;
    long long q;
    cin >> n >> q;
    //cout << (1 << (n-1)) << endl;
    if((1 << (n-1)) > q){
        cout << "The truth is out there" << endl;
    }else{
        for(long long i = 0; i < n-1;i++){
            cout << "1 ";
        }
        cout << q - (n-1)-1 << endl;
    }
    return 0;
}

Test details

Test 1

Verdict: ACCEPTED

input
3 8

correct output
5 1 1

user output
1 1 5

Test 2

Verdict: ACCEPTED

input
2 1

correct output
The truth is out there

user output
The truth is out there

Test 3

Verdict:

input
1 1000000000000000000

correct output
1000000000000000000

user output
999999999999999999

Test 4

Verdict:

input
1 1

correct output
1

user output
0

Test 5

Verdict:

input
60 1000000000000000000

correct output
423539247696576513 1 1 1 1 1 1...

user output
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

Test 6

Verdict:

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 502

Test 7

Verdict:

input
60 500000000000000000

correct output
The truth is out there

user output
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

Test 8

Verdict:

input
5 1000000000

correct output
999999985 1 1 1 1

user output
1 1 1 1 999999995

Test 9

Verdict:

input
19 1000000000

correct output
999737857 1 1 1 1 1 1 1 1 1 1 ...

user output
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

Test 10

Verdict:

input
59 1000000000000000000

correct output
711769623848288257 1 1 1 1 1 1...

user output
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

Test 11

Verdict:

input
42 133713371337

correct output
The truth is out there

user output
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

Test 12

Verdict:

input
42 1337133713371337

correct output
1334934690115786 1 1 1 1 1 1 1...

user output
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

Test 13

Verdict:

input
2 2

correct output
1 1

user output
1 0

Test 14

Verdict:

input
2 1000000000000000000

correct output
999999999999999999 1

user output
1 999999999999999998

Test 15

Verdict: ACCEPTED

input
10 511

correct output
The truth is out there

user output
The truth is out there

Test 16

Verdict:

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 503