CSES - Datatähti Open 2021 - Results
Submission details
Task:Greater Integers
Sender:ritul_kr_singh
Submission time:2021-01-30 16:38:41 +0200
Language:C++ (C++11)
Status:READY
Result:100
Feedback
groupverdictscore
#1ACCEPTED35
#2ACCEPTED65
Test results
testverdicttimegroup
#1ACCEPTED0.01 s1, 2details
#2ACCEPTED0.01 s2details

Code

#include <bits/stdc++.h>
using namespace std;
#define int long long
signed main(){
ios_base::sync_with_stdio(false); cin.tie(nullptr);
int tt; cin >> tt;
while(tt--) {
int n;
cin >> n;
int m = n;
int d = 0, last = 0;
while (m) {
++d;
last = m;
m /= 10;
}
if (last == 9) {
string s, t = "1";
int comp = 0;
for (int i = 0; i < d; ++i) {
s += '9';
t += '1';
comp *= 10;
comp += 9;
}
if (comp<=n) {
cout << t << "\n";
} else cout << s << "\n";
} else {
int comp = 0;
for (int i = 0; i < d; ++i) {
comp *= 10;
comp += last;
}
if (comp<=n) {
for (int i = 0; i < d; ++i) {
cout << last + 1;
}
cout << "\n";
} else {
for (int i = 0; i < d; ++i) {
cout << last;
}
cout << "\n";
}
}
}
}

Test details

Test 1

Group: 1, 2

Verdict: ACCEPTED

input
1000
1
2
3
4
...

correct output
2
3
4
5
6
...

user output
2
3
4
5
6
...
Truncated

Test 2

Group: 2

Verdict: ACCEPTED

input
1000
735425311146082632
756615631808964686
466489470801941584
100417544394053220
...

correct output
777777777777777777
777777777777777777
555555555555555555
111111111111111111
555555555555555555
...

user output
777777777777777777
777777777777777777
555555555555555555
111111111111111111
55555555555555
...
Truncated