
cf比赛
文章平均质量分 78
qq_30278727
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
2015_12_26 A. The Text Splitting
一贴题: A. The Text Splitting time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output You are given the string s o原创 2015-12-26 01:29:20 · 465 阅读 · 0 评论 -
17907955 2016-05-14 17:17:32 biss A - Summer Camp GNU C++11 Accepted 15 ms 2200 KB
#include #include #include #include using namespace std; const int N = 1e4 + 100; string funk(int n){ string s; while(n){ s = char(n%10+48) + s; n/=10; } return s;原创 2016-05-14 22:19:23 · 766 阅读 · 0 评论