07 2024 档案

ABC364
摘要:ABC364真正的答案在于自己。别人的建议你也并不是每次都能接受的吧。 阅读全文
posted @ 2024-07-27 23:59 V_Melville 阅读(11) 评论(0) 推荐(0) 编辑
ABC362
摘要: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 阅读(22) 评论(0) 推荐(1) 编辑
ABC361
摘要: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 阅读(92) 评论(0) 推荐(0) 编辑
ABC360
摘要: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 阅读(60) 评论(0) 推荐(0) 编辑

 
点击右上角即可分享
微信分享提示