# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
751057 | irmuun | Sequence (BOI14_sequence) | C++17 | 1 ms | 340 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
#define pb push_back
#define ll long long
#define ff first
#define ss second
#define all(s) s.begin(),s.end()
int main(){
ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0);
ll k;
cin>>k;
ll b[k+5];
bool ok=true;
for(ll i=1;i<=k;i++){
cin>>b[i];
if(i>1){
ok&=(b[i]==b[i-1]);
}
}
if(ok==true){
if(1<b[1]&&b[1]<9){
ll ans=b[1];
ll cur=1;
while(cur=k){
cur*=10;
ans*=10;
}
cout<<ans;
}
if(b[1]==0){
ll cur=1;
ll ans=10;
while(cur<k){
cur=cur*10+1;
ans*=10;
}
cout<<ans;
}
if(b[1]==9){
if(k==1){
cout<<9;
return 0;
}
ll ans=89;
ll cur=11;
while(cur<k){
ans*=10;
cur=cur*10+1;
}
cout<<ans;
}
return 0;
}
else{
for(int i=1;i<=1000;i++){
int cnt=0;
for(int j=0;j<k;j++){
int n=i+j;
bool ok=false;
while(n>0){
if(n%10==b[j]){
ok=true;
break;
}
n/=10;
}
cnt+=(ok==true);
}
if(cnt==k){
cout<<i;
return 0;
}
}
}
}
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |