CSES - Datatähti Open 2021 - Results
Submission details
Task:Greater Integers
Sender:wlz
Submission time:2021-01-31 15:10:27 +0200
Language:C++17
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
Test results
testverdicttimegroup
#10.01 s1, 2details
#20.01 s2details

Code

#include <bits/stdc++.h>
using namespace std;

int main() {
  ios::sync_with_stdio(false);
  cin.tie(0);  
  int t;
  cin >> t;
  while (t--) {
    string n;
    cin >> n;
    int len = (int) n.length();
    char d = n[0];
    if (n[0] < *max_element(n.begin(), n.end()) || n == string(len, n[0])) {
      if (d == '9') {
        d = '1';
        len++;
      } else {
        d++;
      }
    }
    cout << string(len, d) << '\n';
  }
  return 0;  
}

Test details

Test 1

Group: 1, 2

Verdict:

input
1000
1
2
3
4
...

correct output
2
3
4
5
6
...

user output
2
3
4
5
6
...

Test 2

Group: 2

Verdict:

input
1000
735425311146082632
756615631808964686
466489470801941584
100417544394053220
...

correct output
777777777777777777
777777777777777777
555555555555555555
111111111111111111
555555555555555555
...

user output
888888888888888888
888888888888888888
555555555555555555
222222222222222222
555555555555555555
...