| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 310708 | bigDuck | Devil's Share (RMI19_devil) | C++14 | 0 ms | 384 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
#define INIT ios_base :: sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL);mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
#define mp make_pair
#define pb push_back
#define ft first
#define sc second
#define ll long long
#define pii pair<int, int>
#define count_bits __builtin_popcount
#define int ll
ifstream fin("devil.in");
#define cin fin
ofstream fout("devil.out");
#define cout fout
int t, n, m, k, a[300010], q, l, r;
int d[20];
int32_t main(){
INIT
cin>>t;
while(t--){
cin>>k;
for(int i=1; i<=9; i++){
cin>>d[i];
}
int dmax=0;
for(int i=1; i<=9; i++){
if(d[i]>0){dmax=max(dmax, i);}
}
string s="";
string suf=""; suf.pb('0'+dmax);
d[dmax]--;
dmax=0;
for(int i=9; i>=1; i--){
if(d[i]>0){dmax=i; break;}
}
int sum=0; for(int i=1; i<dmax; i++){if(sum>=d[dmax]){break;} sum+=d[i]; }
if(sum>=d[dmax]){
for(int i=1; (i<dmax) && (d[dmax]>0); i++){
while( (d[i]>0) && (d[dmax]>0) ){s.pb(dmax+'0'); d[dmax]--;if(d[i]>0){s.pb(i+'0'); d[i]--;} }
}
}
for(int i=1; i<=9; i++){
for(int j=1; j<=d[i]; j++){s.pb(i+'0');}
}
s+=suf;
int mx=0;
for(int i=0;i<(s.length()-1); i++){
mx=max(mx, ((int)10*(s[i]-'0')+(s[i+1]-'0')) );
}
cout<<mx;
cout<<"\n";
}
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... | ||||
