小南解题--回文日期--126ms,149ms 摘要:法1:回文常用法,126ms最简单易懂,最常用,最高效#对于所有评测用例,10000101 ≤ N ≤ 89991231,保证N 是一个合法日期的8位数表示。 n = int(input())def …… 题解列表 2022年06月01日 0 点赞 0 评论 185 浏览 评分:0.0
比较完善的算法 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;bool ifhuiwen(int s[],int n){ //s从下标1开始,n表示长度 …… 题解列表 2022年09月27日 0 点赞 0 评论 115 浏览 评分:0.0
这个提示还不如不给. 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;#define No 0int main(){ int N,i1,i2; int a…… 题解列表 2023年03月11日 0 点赞 0 评论 89 浏览 评分:0.0
巧用python datetime包解决以及打表输出ABABBABA型 摘要:解题思路:注意事项:参考代码:from datetime import datetime,timedeltan=input()a=int(n[:4])b=int(n[4]+n[5])c=int(n[6…… 题解列表 2023年03月22日 0 点赞 0 评论 59 浏览 评分:0.0
暴力枚举每一天 摘要: `import java.util.Scanner; public class 回文日期 { static int days[]= {0,31,28,31,30,31,30,31,3…… 题解列表 2022年04月04日 0 点赞 0 评论 279 浏览 评分:0.0
蓝桥杯2020年第十一届省赛真题-回文日期 摘要:# MarkDown编辑器基本使用说明 ``` #include using namespace std; const int N=1010; typedef long long ll;…… 题解列表 2022年04月07日 0 点赞 0 评论 211 浏览 评分:0.0
c++ 常规解法 摘要:解题思路:因为是回文 只用考虑年份即可 且一年只有一个数先求出年份 然后根据年份判断月份是否满足要求 判断日期是否符合要求 如果符合就是回文日期注意事项:求得是当前日期之后的,不用考虑前面的日期。注意…… 题解列表 2022年03月19日 0 点赞 0 评论 229 浏览 评分:0.0
回文日期(c++) 摘要:解题思路:注意事项:参考代码:#include <iostream> using namespace std; int main(){ char arr[8]; scanf("…… 题解列表 2023年07月08日 0 点赞 0 评论 126 浏览 评分:0.0
#C++2571——蓝桥杯2020年第十一届省赛真题-回文日期 摘要:解题思路:用日期遍历会超时,由于回文的特殊性,可以根据年份构造month和day;注意事项:(注意判断构造的日期是否合法);参考代码:#include <iostream> using namesp…… 题解列表 2022年07月23日 0 点赞 0 评论 165 浏览 评分:0.0
2571: 蓝桥杯2020年第十一届省赛真题-回文日期 摘要:**部分正确的话,可能要注意到的一些暗含条件:** 1.‘ABABBABA’型回文串中A与B不能相等 2.输出日期必须大于输入日期 ```cpp #include #include u…… 题解列表 2024年04月08日 0 点赞 0 评论 123 浏览 评分:0.0