冷意
冷意
全部文章
分类
归档
标签
去牛客网
登录
/
注册
冷意的博客
全部文章
(共169篇)
题解 | 小y的考试
#include <cstdint> #include <iostream> #include <string> #include <vector> #include <unordered_map> using namespace std;...
2025-06-03
0
13
题解 | 简写单词
#include <cctype> #include <iostream> #include <string> using namespace std; int main() { string s; while (cin >> s) ...
2025-06-03
0
12
题解 | 珂朵莉的假toptree
#include <iostream> #include <string> using namespace std; int findNthDigit(int n) { int digits = 1; // 当前数字位数 long long count = ...
2025-06-03
0
15
题解 | 校门外的树
#include <any> #include <iostream> #include <vector> #include <algorithm> using namespace std; int main() { int l, m; ...
2025-06-03
0
21
题解 | #日期累加#
#include <iostream> using namespace std; class Date { public: // 判断是否为闰年 bool isLeapYear(int year) const { return (year % 4 == ...
2024-09-02
0
93
题解 | #打印日期#
#include <iostream> using namespace std; class Date { public: // 判断是否为闰年 bool isLeapYear(int year) const { return (year % 4 == ...
2024-09-02
0
70
题解 | #日期差值#
#include <iostream> #include <cstring> using namespace std; class Date { public: // 判断是否为闰年 bool isLeapYear(int year) const { ...
2024-09-02
0
91
题解 | #计算日期到天数转换#
#include <iostream> using namespace std; class Date { private: friend std::istream& operator>>(std::istream& _cin, Date& ...
2024-09-02
0
95
题解 | #跳台阶#
#include <iostream> using namespace std; // F(i) = F(i-1) + F(i-2) // F(0) = 0; F(1) = 1; F(2) = 2; int main() { int n = 0; int first =...
2024-05-13
0
134
首页
上一页
8
9
10
11
12
13
14
15
16
17
下一页
末页