| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 | 
|---|---|---|---|---|---|---|---|
| 845138 | vjudge1 | Datum (COCI20_datum) | C++17 | 1052 ms | 51224 KiB | 
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define endl "\n"
#define pb push_back
#define int long long
using namespace std;
const int inf = 2e18 + 5;
const int N = 5e3 + 5;
const int mod = 998244353;
int f(int l, int r, int n){
  return(r - l)*(n-1) + (n-2)*(n-2)*(n-1)/2 - (n-2) * (2*n-3)*(n-1)/6;
}
string rev(string a){
 reverse(a.begin(), a.end());
 return a;
}
bool srt(string a, string b){
  string c = "", d = "";
  c += a[3];
  c += a[2];
  c += a[1];
  c += a[0];
  c += a[1];
  c += a[0];
  c += a[4];
  c += a[3];
  d += b[3];
  d += b[2];
  d += b[1];
  d += b[0];
  d += b[1];
  d += b[0];
  d += b[4];
  d += b[3];
  return c < d;
}
int32_t main(){
  freopen("in.txt","r", stdin);
  vector<int> m = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
  vector<string> v;
  for(int i = 0; i <= 9999; i++){
    int bas1 = i/1000, bas2 = (i/100)%10, bas3 = (i/10)%10, bas4 = i%10;
    if(bas3 * 10 + bas4 <= 12 && bas3*10 + bas4 > 0){
        int ri = bas4 * 1000 + bas3*100 + bas2*10 + bas1;
        if(m[bas3 * 10 + bas4 - 1] + (bas3 * 10 + bas4 == 2 && ri%4 == 0 ? 1 : 0) >= bas1 * 10 + bas2 && bas1 + bas2 != 0){
            string a = "";
            a += (char)bas1 + '0';
            a += (char)bas2 + '0';
            a += (char)bas3 + '0';
            a += (char)bas4 + '0';
            v.pb(a);
        }
    }
  }
  sort(v.begin(), v.end(), srt);
  //for(auto itr: v) cout<<itr<<endl;
  int n;
  cin>>n;
  while(n--){
    string s;
    cin>>s;
    string ss = "";
    ss += s[6];
    ss += s[7];
    ss += s[8];
    ss += s[9];
    ss += s[3];
    ss += s[4];
    ss += s[0];
    ss += s[1];
    string oh;
    for(int i = 0; i < v.size(); i++){
        string k = rev(v[i]) + v[i];
        if(k > ss){
            oh = v[i];
            break;
        }
    }
    cout<<oh[0]<<oh[1]<<"."<<oh[2]<<oh[3]<<"."<<rev(oh)<<"."<<endl;
  }
  return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
| # | Verdict | Execution time | Memory | Grader output | 
|---|---|---|---|---|
| Fetching results... | ||||
