上一页 1 2 3 4 5 6 7 8 9 ··· 12 下一页

2023年6月17日

摘要: ## T1:[Echo](https://atcoder.jp/contests/abc306/tasks/abc306_a "Echo") 模拟 代码实现 ``` n = int(input()) s = input() ans = '' for c in s: ans += c+c print( 阅读全文
posted @ 2023-06-17 23:55 V_Melville 阅读(9) 评论(0) 推荐(0) 编辑

2023年6月13日

摘要: ## T1:[等差数](https://jingsai.xiaohoucode.com/?id=e40ea30b46c98efbb4dba3eb78b5cad7#/studentComplier?bundleId=1883304899801eb7e339b1d70027f001&back=%2F17 阅读全文
posted @ 2023-06-13 19:58 V_Melville 阅读(19) 评论(0) 推荐(0) 编辑

2023年6月12日

摘要: ## T1:[Water Station](https://atcoder.jp/contests/abc305/tasks/abc305_a "Water Station") 模拟 代码实现 ``` // C++实现 #include using namespace std; int main() 阅读全文
posted @ 2023-06-12 10:19 V_Melville 阅读(7) 评论(0) 推荐(0) 编辑

2023年6月9日

摘要: ## T1:[Overall Winner](https://atcoder.jp/contests/abc301/tasks/abc301_a) 模拟 代码实现 ``` #include #define rep(i, n) for (int i = 0; i > n >> s; int t = 0 阅读全文
posted @ 2023-06-09 21:36 V_Melville 阅读(7) 评论(0) 推荐(0) 编辑

2023年6月6日

摘要: ## T1:[数字字符串](https://jingsai.xiaohoucode.com/?id=d41e21d94f96d36125b47328d2041abb#/studentComplier?bundleId=18832fe31950e6354aa9e3ec00f26001&back=%2F 阅读全文
posted @ 2023-06-06 16:51 V_Melville 阅读(23) 评论(0) 推荐(0) 编辑

2023年6月4日

摘要: ## T1:[First Player](https://atcoder.jp/contests/abc304/tasks/abc304_a "First Player") 模拟 代码实现 ``` #include #define rep(i, n) for (int i = 0; i > n; v 阅读全文
posted @ 2023-06-04 09:12 V_Melville 阅读(61) 评论(0) 推荐(0) 编辑

2023年5月29日

摘要: ## T1:[奇怪的银行](https://jingsai.xiaohoucode.com/?id=561859e32eba42809ccf46766423fa74#/studentComplier?bundleId=1881a8b05aa08e56552d8f60000c0001&back=%2F 阅读全文
posted @ 2023-05-29 22:03 V_Melville 阅读(11) 评论(0) 推荐(0) 编辑

2023年5月28日

摘要: ## T1:[Similar String](https://atcoder.jp/contests/abc303/tasks/abc303_a "Similar String") 模拟 代码实现 ``` #include #define rep(i, n) for (int i = 0; i > 阅读全文
posted @ 2023-05-28 01:28 V_Melville 阅读(23) 评论(0) 推荐(0) 编辑

2023年5月21日

摘要: ## T1:[Attack](https://atcoder.jp/contests/abc302/tasks/abc302_a) 答案为 $\lceil\frac{A}{B}\rceil$ 代码实现 ``` a, b = map(int, input().split()) print((a+b-1 阅读全文
posted @ 2023-05-21 00:29 V_Melville 阅读(20) 评论(0) 推荐(0) 编辑

2023年5月8日

摘要: ## T1:[加下标](https://jingsai.xiaohoucode.com/?id=3f811a17c19e7d7994f28822658a08e2#/studentComplier?bundleId=1877a02de4c0da8a1d3198b3000bb001&back=%2F16 阅读全文
posted @ 2023-05-08 01:35 V_Melville 阅读(26) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 12 下一页