# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
709944 |
2023-03-15T01:02:26 Z |
pcc |
Datum (COCI20_datum) |
C++14 |
|
513 ms |
536 KB |
#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;
if(y == 2020&&m == 2&&d == 2)cout<<sy<<endl;
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){
// cout<<year<<","<<month<<","<<day<<endl;
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;
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:15:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
15 | 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:56:10: warning: unused variable 'c' [-Wunused-variable]
56 | auto c = clock();
| ^
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
442 ms |
308 KB |
Output isn't correct |
2 |
Incorrect |
513 ms |
432 KB |
Output isn't correct |
3 |
Incorrect |
455 ms |
432 KB |
Output isn't correct |
4 |
Incorrect |
452 ms |
440 KB |
Output isn't correct |
5 |
Incorrect |
496 ms |
464 KB |
Output isn't correct |
6 |
Incorrect |
511 ms |
464 KB |
Output isn't correct |
7 |
Incorrect |
446 ms |
312 KB |
Output isn't correct |
8 |
Incorrect |
505 ms |
424 KB |
Output isn't correct |
9 |
Incorrect |
449 ms |
212 KB |
Output isn't correct |
10 |
Incorrect |
503 ms |
536 KB |
Output isn't correct |