上一页 1 ··· 4 5 6 7 8 9 10 11 下一页
摘要: TASK: sort3LANG: C++Compiling...Compile: OKExecuting... Test 1: TEST OK [0.000 secs, 3028 KB] Test 2: TEST OK [0.000 secs, 3028 KB] Test 3: TEST OK [0.000 secs, 3028 KB] Test 4: TEST OK [0.000 secs, 3028 KB] Test 5: TEST OK [0.000 secs, 3028 KB] Test 6: TEST OK [0.000 secs, 3028 KB] Test 7: TEST OK 阅读全文
posted @ 2011-05-03 13:12 幻魇 阅读(206) 评论(0) 推荐(0) 编辑
摘要: TASK: frac1LANG: C++Compiling...Compile: OKExecuting... Test 1: TEST OK [0.000 secs, 3172 KB] Test 2: TEST OK [0.000 secs, 3172 KB] Test 3: TEST OK [0.000 secs, 3172 KB] Test 4: TEST OK [0.000 secs, 3172 KB] Test 5: TEST OK [0.000 secs, 3172 KB] Test 6: TEST OK [0.000 secs, 3172 KB] Test 7: TEST OK 阅读全文
posted @ 2011-05-03 11:52 幻魇 阅读(244) 评论(0) 推荐(0) 编辑
摘要: 1 /* 2 ID: jiafeim1 3 PROG: castle 4 LANG: C++ 5 */ 6 #include <iostream> 7 #include <fstream> 8 #include <algorithm> 9 #include <string> 10 #include <vector> 11 using namespace std; 12 13 #define maxN(x,y) ((x)>(y)?(x):(y)) 14 #include <queue> 15 16 int wall[5 阅读全文
posted @ 2011-05-03 11:20 幻魇 阅读(320) 评论(0) 推荐(0) 编辑
摘要: 1 /* 2 ID: jiafeim1 3 PROG: checker 4 LANG: C++ 5 */ 6 #include <iostream> 7 #include <fstream> 8 #include <algorithm> 9 10 using namespace std;11 12 bool column[16]={false};13 bool lu[40] = {false};14 bool ru[40] = {false};15 16 int res[15];17 int top = 0;18 int n;19 int countx = 阅读全文
posted @ 2011-05-02 16:30 幻魇 阅读(272) 评论(0) 推荐(1) 编辑
摘要: 1 /* 2 ID: jiafeim1 3 PROG: sprime 4 LANG: C++ 5 */ 6 #include <iostream> 7 #include <fstream> 8 #include <algorithm> 9 10 using namespace std;11 12 #include <cmath>13 14 15 bool check(long num)16 {17 if(num%2 == 0) return false;18 long end = std::sqrt((float)num)+1;19 for(in 阅读全文
posted @ 2011-05-02 14:15 幻魇 阅读(246) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 下一页