上一页 1 2 3 4 5 6 ··· 14 下一页

2024年8月11日

摘要: 人生最大的危机在于过于依靠别人(的危险)。 阅读全文
posted @ 2024-08-11 00:21 V_Melville 阅读(19) 评论(0) 推荐(0) 编辑

2024年8月4日

摘要: 在这个无药可救的世界,真正能依靠的也只有无药可救的自己。 阅读全文
posted @ 2024-08-04 10:09 V_Melville 阅读(43) 评论(0) 推荐(0) 编辑

2024年7月27日

摘要: ABC364 真正的答案在于自己。别人的建议你也并不是每次都能接受的吧。 阅读全文
posted @ 2024-07-27 23:59 V_Melville 阅读(11) 评论(0) 推荐(0) 编辑

2024年7月14日

摘要: A. Buy a Pen 模拟 代码实现 a = list(map(int, input().split())) c = input() a.pop(['Red', 'Green', 'Blue'].index(c)) print(min(a)) B. Right Triangle 一个角为直角等价 阅读全文
posted @ 2024-07-14 00:24 V_Melville 阅读(21) 评论(0) 推荐(1) 编辑

2024年7月6日

摘要: A. Insert 模拟 代码实现 n, k, x = map(int, input().split()) a = list(map(int, input().split())) a.insert(k, x) print(*a) B. Intersection of Cuboids 模拟 代码实现 阅读全文
posted @ 2024-07-06 23:34 V_Melville 阅读(88) 评论(0) 推荐(0) 编辑

2024年7月1日

摘要: A. A Healthy Breakfast 模拟 代码实现 s = input() if s.index('R') < s.index('M'): print('Yes') else: print('No') B. Vertical Reading 模拟 代码实现 #include <bits/s 阅读全文
posted @ 2024-07-01 00:17 V_Melville 阅读(42) 评论(0) 推荐(0) 编辑

2024年6月26日

摘要: A. Count Takahashi 模拟 代码实现 n = int(input()) ans = 0 for i in range(n): s = input() if s == 'Takahashi': ans += 1 print(ans) B. Couples 统计有多少个数对 \((i, 阅读全文
posted @ 2024-06-26 23:24 V_Melville 阅读(4) 评论(0) 推荐(0) 编辑

2024年6月19日

摘要: 1. 在两个数列之间 有两个整数数列 \(a_1,a_2,\cdots,a_n\) 和 \(b_1,b_2,\cdots,b_n\)。我们的任务是找出满足以下条件的数列 \(c_1,c_2,\cdots,c_n\): 对 \(i=1,2,\cdots,n\),\(a_i \le c_i \le b_ 阅读全文
posted @ 2024-06-19 17:15 V_Melville 阅读(7) 评论(0) 推荐(1) 编辑

2024年6月15日

摘要: A. Welcome to AtCoder Land 模拟 B. Ticket Counter 模拟 代码实现 #include <bits/stdc++.h> #define rep(i, n) for (int i = 0; i < (n); ++i) using namespace std; 阅读全文
posted @ 2024-06-15 23:49 V_Melville 阅读(73) 评论(0) 推荐(1) 编辑

2024年6月14日

摘要: A. Sanitize Hands 模拟 代码实现 #include <bits/stdc++.h> #define rep(i, n) for (int i = 0; i < (n); ++i) using namespace std; int main() { int n, m; cin >> 阅读全文
posted @ 2024-06-14 23:56 V_Melville 阅读(8) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 14 下一页