睦头人q
睦头人q
全部文章
题解
归档
标签
去牛客网
登录
/
注册
睦头人q的博客
全部文章
/ 题解
(共3篇)
题解 | #[NOIP2016]回文日期#
```#include <iostream> #include <algorithm> #include <vector> bool isLeap(int y) { return (y % 4 == 0 && y % 100 != 0) |...
C++
模拟
字符串
2026-05-14
0
15
题解 | #机器翻译#
```#include <iostream> #include <vector> using namespace std; int main(){ ios::sync_with_stdio(false); cin.tie(0),cout.tie(0); in...
C++
模拟
2026-05-06
0
19
题解 | #多项式输出#
#include <algorithm> using namespace std; int main(){ ios::sync_with_stdio(false); cin.tie(0);cout.tie(0); int n; if( cin >> n &...
C++
模拟
2026-05-05
0
22