CSES - Putka Open 2020 – 3/5 - Results
Submission details
Task:Numerot
Sender:tykkipeli
Submission time:2020-10-17 05:12:28 +0300
Language:C++11
Status:READY
Result:25
Feedback
groupverdictscore
#1ACCEPTED12
#2ACCEPTED13
#30
Test results
testverdicttimegroup
#1ACCEPTED0.14 s1, 2, 3details
#2ACCEPTED0.14 s2, 3details
#30.14 s3details

Code

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

int maxdigit(int n) {
    int ans = 0;
    while (n > 0) {
        ans = max(ans,n%10);
        n /= 10;
    }
    return ans;
}

int dp[20000000];
int lol[20000000];

void testCase() {
    int n;
    cin >> n;
    cout << dp[n] << "\n";
}

int main() {
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    int ind = 1;
    while (dp[1000000] == 0) {
        lol[ind] = 1 + lol[ind-maxdigit(ind)];
        if (lol[ind] > lol[ind-1]) {
            dp[lol[ind]] = ind;
        }
        ind++;
    }
    int t;
    cin >> t;
    for (int i = 0; i < t; i++) {
        testCase();
    }
}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Test details

Test 1

Group: 1, 2, 3

Verdict: ACCEPTED

input
1000
1
2
3
4
...

correct output
1
10
11
20
22
...

user output
1
10
11
20
22
...

Test 2

Group: 2, 3

Verdict: ACCEPTED

input
1000
224995
413660
249827
2125
...

correct output
1731724
3216040
1940719
14585
532612
...

user output
1731724
3216040
1940719
14585
532612
...

Test 3

Group: 3

Verdict:

input
1000
627887018110416188
785474884983906653
653772166720939773
784335285960673683
...

correct output
5530371754830260284
6918696171534226533
5757755627065159149
6908439780325129803
3223801064342340738
...

user output
(empty)