이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int vet[100100];
int main(){
int k;
cin >> k;
for(int i=1; i<=k; i++){
cin >> vet[i];
}
int x = vet[1];
if(k==1){
cout << x << endl;
}
else if(k>=2 and k<=10){
cout << x*10 << endl;
}
else if(k>=11 and k<=100){
cout << x*100 << endl;
}
else if(k>=101 and k<=1000){
cout << x*1000 << endl;
}
else if(k>=1001 and k<=10000){
cout << x*10000 << endl;
}
else if(k>=10001 and k<=100000){
cout << x*10000 << endl;
}
return 0;
}
# | 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... |