이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int main()
{
int k, a;
string s;
cin >> k;
for(int i = 0 ; i < k ; i++) cin >> a;
stringstream ans;
ans << k;
ans >> s;
if(k == 1 and a != 0) cout << a << endl;
else if(a == 0)
{
if(k == 1) cout << 10 << endl;
else cout << pow(10, s.size()+1) << endl;
}
else if(a == 9)
{
int t = pow(10, s.size()-2);
if(t == 1) t = 0;
if(s.size() == 1) cout << 89 << endl;
else if(t+1 + pow(10, s.size()-1) > k) cout << pow(10, s.size()-1)*9 - t-1 << endl;
else cout << pow(10, s.size())*9 - pow(10, s.size()-1)-1 << endl;
}
else cout << pow(10, s.size())*a << endl;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |