#include <bits/stdc++.h>
using namespace std;
vector<tuple<int,int,int>> v;
int cnt = 0;
bool check(int y,int m,int d){
string sy = to_string(y);
sy = string(4-sy.size(),'0')+to_string(y);
string sm = (m/10?"":"0")+to_string(m);
string sd = (d/10?"":"0")+to_string(d);
sy = sd+sm+sy;
for(int i = 0;i<sy.size()/2;i++)if(sy[i] != sy[sy.size()-1-i])return false;
return true;
}
void add(int year){
int month = 1,day = 1;
bool leap = false;
if(year%400 == 0)leap = true;
else if(year%100 == 0)leap = false;
else if(year%4 == 0)leap = true;
else leap = false;
while(month!=13){
if(check(year,month,day))v.push_back(make_tuple(year,month,day));
day++;
if(month == 2){
if(leap&&day == 29){
day = 1;
month++;
}
else if(!leap&&day == 28){
day = 1;
month++;
}
}
else if(month == 1||month == 3||month == 5||month==7||month==8||month == 10||month == 12){
if(day == 31){
day = 1;
month++;
}
}
else{
if(day == 30){
day = 1;
month++;
}
}
}
return;
}
int main(){
ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);
auto c = clock();
for(int i = 0;i<1e4;i++){
add(i);
}
int t;
cin>>t;
assert(t<=10);
while(t--){
string s;
cin>>s;
tuple<int,int,int> tmp = make_tuple(stoi(s.substr(6,4)),stoi(s.substr(3,2)),stoi(s.substr(0,2)));
auto k = *upper_bound(v.begin(),v.end(),tmp);
int y = get<0>(k),m = get<1>(k),d = get<2>(k);
string sy = to_string(y);
sy = string(4-sy.size(),'0')+to_string(y);
string sm = (m/10?"":"0")+to_string(m);
string sd = (d/10?"":"0")+to_string(d);
cout<<sd<<'.'<<sm<<'.'<<sy<<'.'<<'\n';
}
}
/*
*/
Compilation message
datum.cpp: In function 'bool check(int, int, int)':
datum.cpp:14:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
14 | for(int i = 0;i<sy.size()/2;i++)if(sy[i] != sy[sy.size()-1-i])return false;
| ~^~~~~~~~~~~~
datum.cpp: In function 'int main()':
datum.cpp:54:10: warning: unused variable 'c' [-Wunused-variable]
54 | auto c = clock();
| ^
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
531 ms |
312 KB |
Output is correct |
2 |
Runtime error |
520 ms |
436 KB |
Execution killed with signal 6 |
3 |
Incorrect |
531 ms |
304 KB |
Output isn't correct |
4 |
Correct |
515 ms |
308 KB |
Output is correct |
5 |
Correct |
483 ms |
432 KB |
Output is correct |
6 |
Incorrect |
474 ms |
304 KB |
Output isn't correct |
7 |
Correct |
526 ms |
428 KB |
Output is correct |
8 |
Correct |
530 ms |
312 KB |
Output is correct |
9 |
Correct |
516 ms |
424 KB |
Output is correct |
10 |
Runtime error |
508 ms |
432 KB |
Execution killed with signal 6 |