自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(6)
  • 收藏
  • 关注

原创 1245 最小的N个和

#include #include #include #include #include #include #include #include using namespace std; int n, a [100010], b [100010]; priority_queue que; stack Q; int main () { cin >> n;

2017-09-20 21:47:33 280

原创 1186 F函数

#include using namespace std; int f (int n) { if (n >= 101) return n - 10; else return f (f (n + 11)); } int main () { int x; for (;

2017-07-06 14:53:47 215

原创 1265 酸性差值

#include using namespace std; int main () { int rs [1010]; int n, r; int m1 = 0, m2 = 0; int first [3], second [3]; cin >> n; memset (rs, 0, sizeof (

2017-07-06 14:44:04 180

原创 1115 开心的金明

#include using namespace std; int n, m, t; int Max = 0; struct good{ int p; int v; }; bool cmp (good a, good b) { if (a.p <= b.p) return true; else

2017-07-04 16:36:59 156

原创 1006 等差数列

#include using namespace std; int n; int c = 2; int m = 0; int num [110]; int main () { cin >> n; for (int i = 0; i < n; i ++){ cin >> num [i]; }

2017-07-04 14:38:55 374

原创 1008 选数

#include using namespace std; int num [105]; int n, k; int c = 0; void isp (int x) { for (int i = 2; i <= sqrt (x); i ++){ if (x % i == 0){ return;

2017-07-04 14:29:18 220

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除