上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 22 下一页

2025年4月28日

摘要: 越学越会发现自己什么都不知道,越发现就越想再学。 阅读全文
posted @ 2025-04-28 03:09 V_Melville 阅读(65) 评论(0) 推荐(0)

2025年4月20日

摘要: C. Dislike Foods 可以先建立使用食材 \(x\) 的料理列表 同时维护每种料理中当前不能吃的食材数 然后按顺序模拟即可 代码实现 #include <bits/stdc++.h> #define rep(i, n) for (int i = 0; i < (n); ++i) usin 阅读全文
posted @ 2025-04-20 05:21 V_Melville 阅读(56) 评论(2) 推荐(0)

2025年4月13日

摘要: Don't stop until you are in the top 1% 阅读全文
posted @ 2025-04-13 19:01 V_Melville 阅读(25) 评论(0) 推荐(0)

2025年4月6日

摘要: 人生苦短,没有时间做其他事,只能做自己喜欢的事。 阅读全文
posted @ 2025-04-06 00:46 V_Melville 阅读(44) 评论(0) 推荐(0)

2025年3月30日

摘要: 当面临无法克服的障碍时,没有什么比固执更无用的了。 阅读全文
posted @ 2025-03-30 00:35 V_Melville 阅读(70) 评论(0) 推荐(0)

2025年3月23日

摘要: A. Doors in the Center 模拟 代码实现 n = int(input()) s = ['-']*n if n%2 == 0: s[n//2-1] = '=' s[n//2] = '=' else: s[n//2] = '=' print(''.join(s)) B. Full H 阅读全文
posted @ 2025-03-23 01:32 V_Melville 阅读(48) 评论(0) 推荐(0)

2025年3月15日

摘要: A. Thermometer 模拟 代码实现 #include <bits/stdc++.h> using namespace std; int main() { double x; cin >> x; if (x >= 38) puts("1"); else if (x >= 37.5) puts 阅读全文
posted @ 2025-03-15 23:54 V_Melville 阅读(57) 评论(0) 推荐(0)

2025年3月9日

摘要: A. Triple Four 模拟 代码实现 n = int(input()) a = list(map(int, input().split())) ans = any(a[i] == a[i+1] == a[i+2] for i in range(n-2)) print('Yes' if ans 阅读全文
posted @ 2025-03-09 00:10 V_Melville 阅读(63) 评论(0) 推荐(0)

2025年3月1日

摘要: A. Strictly Increasing? 模拟 代码实现 #include <bits/stdc++.h> #define rep(i, n) for (int i = 0; i < (n); ++i) using namespace std; int main() { int n; cin 阅读全文
posted @ 2025-03-01 23:53 V_Melville 阅读(39) 评论(0) 推荐(0)

2025年2月23日

摘要: A. 22222 模拟 代码实现 s = input() print('2'*s.count('2')) B. cat 模拟 代码实现 n = int(input()) print(''.join(sorted((input() for _ in range(n)), key=len))) C. D 阅读全文
posted @ 2025-02-23 00:53 V_Melville 阅读(42) 评论(0) 推荐(0)
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 22 下一页