
CodeForces
u25th_engineer
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
上周刚开始打CF,最近刷的一些基础题
#include <stdio.h> #include <stdlib.h> #include <math.h> #include <string.h> int main( ) { int n, i; scanf( "%d", &n ); for( i = 1; i <= n; i ++ ) //w...原创 2018-09-01 19:43:12 · 705 阅读 · 4 评论 -
中秋放假这两天写的几个题目
题目1:B. Vasya and Cornfield——https://codeforces.com/contest/1058/problem/B AC代码: #include <bits/stdc++.h> using namespace std; int main() { int n, d, m, ans; int x1, y1...原创 2018-09-24 11:54:55 · 838 阅读 · 0 评论