Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1548946
  • 博文数量: 327
  • 博客积分: 10000
  • 博客等级: 上将
  • 技术积分: 3556
  • 用 户 组: 普通用户
  • 注册时间: 2005-04-05 21:28
个人简介

东黑布衣,流浪幽燕。 真诚善良,值得信赖。

文章分类

全部博文(327)

我的朋友

分类: BSD

2005-04-21 21:58:04

20180428




























  1. #ifndef _CRT_SECURE_NO_WARNINGS
  2. #define _CRT_SECURE_NO_WARNINGS
  3. #endif

  4. #include<stdio.h>
  5. #include<string.h>

  6. typedef struct
  7. {
  8.     int y, x;
  9. }AXIS;

  10. extern void init(int mScreenSize);
  11. extern void create_memo(int mId, int mY, int mX, int mHeight, int mWidth, char str[]);
  12. extern AXIS select_memo(int mId);
  13. extern void move_memo(int mId, int mY, int mX);
  14. extern void modify_memo(int mId, int mHeight, int mWidth, char str[]);
  15. extern void get_screen_context(int mY, int mX, char res[5][5]);

  16. static int pseudo_rand(void);
  17. static void make_command_list();
  18. static void make_input_string(char a[], int max_len);
  19. static int make_hash(char a[5][5]);

  20. enum COMMAND
  21. {
  22.     CREATE = 100,
  23.     SELECT = 200,
  24.     MOVE = 300,
  25.     MODIFY = 400,
  26.     GETRES = 999
  27. };

  28. static int dummy1[9389], dummy2[745];
  29. static int status[5], commandList[100005], listsize = 0, seed;
  30. static int newCommand[4] = { CREATE, SELECT, MOVE, MODIFY };
  31. static char input_str[2555], user_ans_str[5][5];

  32. int main()
  33. {
  34.     int tc, totalScore = 0;

  35.     
  36.     freopen("sample_input.txt", "r", stdin);
  37.     setbuf(stdout, NULL);

  38.     scanf("%d", &tc);
  39.     for (int t = 1; t <= tc; t++)
  40.     {
  41.         int accepted = 0, id_size = 0, input_cnt = 0, ans_cnt = 0, H, W, Y, X;
  42.         int screen_size, memo_size, correct_ans, user_ans;
  43.         AXIS cur_axis;

  44.         scanf("%d%d%d%d", &seed, &screen_size, &memo_size, &id_size);

  45.         if (memo_size * 2 >= screen_size)
  46.             memo_size = screen_size / 2;

  47.         for (int i = 0; i < 4; i++)
  48.         {
  49.             scanf("%d", status + i);
  50.             input_cnt += status[i] * 2;
  51.             ans_cnt += status[i];
  52.         }

  53.         init(screen_size);

  54.         for (int mid = 0; mid < id_size; mid++)
  55.         {
  56.             H = pseudo_rand() % memo_size + 1;
  57.             W = pseudo_rand() % memo_size + 1;
  58.             cur_axis.y = Y = pseudo_rand() % (screen_size - H + 1);
  59.             cur_axis.x = X = pseudo_rand() % (screen_size - W + 1);
  60.             make_input_string(input_str, H*W);

  61.             create_memo(mid, Y, X, H, W, input_str);
  62.         }

  63.         make_command_list();

  64.         for (int i = 0; i < input_cnt; i++)
  65.         {
  66.             int comm = commandList[i], target_id;

  67.             switch (comm)
  68.             {
  69.             case CREATE:
  70.                 H = pseudo_rand() % memo_size + 1;
  71.                 W = pseudo_rand() % memo_size + 1;
  72.                 cur_axis.y = Y = pseudo_rand() % (screen_size - H + 1);
  73.                 cur_axis.x = X = pseudo_rand() % (screen_size - W + 1);
  74.                 make_input_string(input_str, H*W);

  75.                 create_memo(id_size, Y, X, H, W, input_str);
  76.                 id_size++;
  77.                 break;
  78.             case SELECT:
  79.                 target_id = pseudo_rand() % id_size;

  80.                 cur_axis = select_memo(target_id);
  81.                 break;
  82.             case MOVE:
  83.                 target_id = pseudo_rand() % id_size;
  84.                 cur_axis.y = Y = pseudo_rand() % (screen_size - memo_size + 1);
  85.                 cur_axis.x = X = pseudo_rand() % (screen_size - memo_size + 1);

  86.                 move_memo(target_id, Y, X);
  87.                 break;
  88.             case MODIFY:
  89.                 target_id = pseudo_rand() % id_size;
  90.                 H = pseudo_rand() % memo_size + 1;
  91.                 W = pseudo_rand() % memo_size + 1;
  92.                 make_input_string(input_str, memo_size * memo_size);

  93.                 modify_memo(target_id, H, W, input_str);
  94.                 break;
  95.             case GETRES:
  96.                 Y = cur_axis.y + pseudo_rand() % 11 - 5;
  97.                 X = cur_axis.x + pseudo_rand() % 11 - 5;

  98.                 if (Y < 0)
  99.                     Y = 0;
  100.                 if (Y + 5 >= screen_size)
  101.                     Y = screen_size - 5;

  102.                 if (X < 0)
  103.                     X = 0;
  104.                 if (X + 5 >= screen_size)
  105.                     X = screen_size - 5;

  106.                 get_screen_context(Y, X, user_ans_str);
  107.                 user_ans = make_hash(user_ans_str);

  108.                 scanf("%d", &correct_ans);
  109.                 if (correct_ans == user_ans)
  110.                     accepted++;

  111.                 break;
  112.             default:
  113.                 break;
  114.             }
  115.         }

  116.         if (accepted == ans_cnt)
  117.             printf("#%d 100\n", t), totalScore += 100;
  118.         else
  119.             printf("#%d 0\n", t);

  120.     }

  121.     printf("Total Score = %d\n", totalScore / tc);
  122. }

  123. static int pseudo_rand(void)
  124. {
  125.     seed = seed * 431345 + 2531999;
  126.     return seed & 0x7FFFFFFF;
  127. }

  128. static void make_command_list()
  129. {
  130.     int tot = 0, listsize = 0;
  131.     for (int i = 0; i < 4; i++)
  132.     {
  133.         tot += status[i];
  134.     }
  135.     for (int i = tot; i > 0; i--)
  136.     {
  137.         int val = pseudo_rand() % i;
  138.         int pos = 0;
  139.         val -= status[pos];
  140.         while (val > 0 || status[pos] == 0)
  141.         {
  142.             pos++;
  143.             val -= status[pos];
  144.             if (pos >= 4)
  145.                 break;
  146.         }

  147.         switch (pos)
  148.         {
  149.         case 0:
  150.             commandList[listsize++] = CREATE;
  151.             commandList[listsize++] = GETRES;
  152.             break;
  153.         case 1:
  154.             commandList[listsize++] = SELECT;
  155.             commandList[listsize++] = GETRES;
  156.             break;
  157.         case 2:
  158.             commandList[listsize++] = MOVE;
  159.             commandList[listsize++] = GETRES;
  160.             break;
  161.         case 3:
  162.             commandList[listsize++] = MODIFY;
  163.             commandList[listsize++] = GETRES;
  164.             break;
  165.         default:
  166.             break;
  167.         }
  168.         status[pos]--;
  169.     }
  170. }

  171. static void make_input_string(char a[], int max_len)
  172. {
  173.     int len = pseudo_rand() % max_len + 10;
  174.     for (int i = 0; i < len; i++)
  175.         a[i] = pseudo_rand() % 26 + 'a';

  176.     a[len] = '\0';
  177. }

  178. static int make_hash(char a[5][5])
  179. {
  180.     int ret = 9875;

  181.     for (int y = 0; y < 5; y++)
  182.     {
  183.         for (int x = 0; x < 5; x++)
  184.         {
  185.             if (a[y][x] == '\0')
  186.                 continue;

  187.             ret = (ret*a[y][x]) % 32853;
  188.         }
  189.     }

  190.     return ret;
  191. }


  1. typedef struct
  2. {
  3.     int y, x;
  4. }AXIS;


  5. void init(int mScreenSize)
  6. {

  7. }
  8. void create_memo(int mId, int mY, int mX, int mHeight, int mWidth, char str[])
  9. {

  10. }
  11. AXIS select_memo(int mId)
  12. {
  13.     AXIS ret;
  14.     ret.y = ret.x = 0;
  15.     return ret;
  16. }
  17. void move_memo(int mId, int mY, int mX)
  18. {

  19. }
  20. void modify_memo(int mId, int mHeight, int mWidth, char str[])
  21. {

  22. }
  23. void get_screen_context(int mY, int mX, char res[5][5])
  24. {

  25. }


  1. 5
  2. 99 8 3 2 3 0 0 0
  3. 28377
  4. 3345
  5. 4326
  6. 321 10 5 3 1 2 2 2
  7. 24681
  8. 9875
  9. 7095
  10. 32415
  11. 525
  12. 28827
  13. 28827
  14. 651 50 10 10 5 5 5 5
  15. 7435
  16. 26502
  17. 9875
  18. 26424
  19. 9875
  20. 15664
  21. 9875
  22. 32370
  23. 25473
  24. 9875
  25. 23676
  26. 22083
  27. 4812
  28. 17082
  29. 29748
  30. 9875
  31. 27702
  32. 9875
  33. 9875
  34. 9875
  35. 87 100 30 50 50 40 40 50
  36. 20979
  37. 19386
  38. 31920
  39. 29154
  40. 999
  41. 24582
  42. 360
  43. 21381
  44. 921
  45. 31437
  46. 12150
  47. 20481
  48. 29706
  49. 11808
  50. 10449
  51. 5913
  52. 4701
  53. 1368
  54. 2631
  55. 7260
  56. 18597
  57. 6252
  58. 9875
  59. 19164
  60. 6723
  61. 7656
  62. 8757
  63. 12513
  64. 17490
  65. 17784
  66. 31125
  67. 16470
  68. 7362
  69. 5757
  70. 10779
  71. 9875
  72. 26385
  73. 7959
  74. 9924
  75. 31257
  76. 2892
  77. 17796
  78. 30960
  79. 5751
  80. 11097
  81. 6660
  82. 9875
  83. 28530
  84. 16596
  85. 15951
  86. 13893
  87. 12981
  88. 17436
  89. 4863
  90. 10071
  91. 4365
  92. 4161
  93. 5800
  94. 22356
  95. 4395
  96. 9875
  97. 13791
  98. 10374
  99. 4302
  100. 9645
  101. 29067
  102. 27654
  103. 12714
  104. 18522
  105. 3972
  106. 960
  107. 28359
  108. 21807
  109. 11715
  110. 9210
  111. 9875
  112. 9875
  113. 26988
  114. 31464
  115. 2616
  116. 13014
  117. 9600
  118. 16557
  119. 27702
  120. 11604
  121. 29667
  122. 13368
  123. 32619
  124. 13239
  125. 23328
  126. 3147
  127. 11121
  128. 28026
  129. 24666
  130. 6588
  131. 25128
  132. 9495
  133. 29286
  134. 11814
  135. 23415
  136. 5403
  137. 31281
  138. 14073
  139. 30399
  140. 26310
  141. 19437
  142. 18610
  143. 16815
  144. 32001
  145. 24786
  146. 10326
  147. 18993
  148. 9875
  149. 3564
  150. 5169
  151. 16116
  152. 26733
  153. 16980
  154. 6948
  155. 32016
  156. 9875
  157. 3114
  158. 9875
  159. 15825
  160. 972
  161. 23967
  162. 3801
  163. 28470
  164. 23145
  165. 17145
  166. 29622
  167. 5138
  168. 31998
  169. 19560
  170. 7116
  171. 9875
  172. 9651
  173. 3672
  174. 24651
  175. 31061
  176. 9875
  177. 22569
  178. 5799
  179. 5658
  180. 3231
  181. 25053
  182. 26889
  183. 23949
  184. 828
  185. 13932
  186. 2022
  187. 17217
  188. 8784
  189. 4383
  190. 21588
  191. 9875
  192. 15141
  193. 23769
  194. 25464
  195. 9875
  196. 4002
  197. 26622
  198. 18795
  199. 372
  200. 9875
  201. 10137
  202. 30210
  203. 4050
  204. 24363
  205. 22695
  206. 24699
  207. 24627
  208. 7929
  209. 1701
  210. 20922
  211. 18489
  212. 29376
  213. 6666
  214. 6666
  215. 13449
  216. 743 1000 50 100 100 200 300 400
  217. 24939
  218. 9875
  219. 31017
  220. 9875
  221. 18102
  222. 10729
  223. 3039
  224. 10729
  225. 1182
  226. 27987
  227. 19461
  228. 24468
  229. 2184
  230. 2409
  231. 16326
  232. 20355
  233. 9875
  234. 4119
  235. 28797
  236. 9168
  237. 10491
  238. 17850
  239. 9875
  240. 15093
  241. 13140
  242. 26118
  243. 19656
  244. 9309
  245. 9875
  246. 25032
  247. 20718
  248. 21401
  249. 9875
  250. 9875
  251. 9875
  252. 9875
  253. 10803
  254. 18090
  255. 13548
  256. 11847
  257. 762
  258. 762
  259. 11760
  260. 25020
  261. 26880
  262. 9875
  263. 11655
  264. 11760
  265. 6828
  266. 756
  267. 16197
  268. 10590
  269. 21887
  270. 19788
  271. 8868
  272. 20610
  273. 12828
  274. 23751
  275. 9875
  276. 2370
  277. 9486
  278. 14586
  279. 18396
  280. 16530
  281. 6639
  282. 20292
  283. 10729
  284. 21147
  285. 27771
  286. 5862
  287. 19689
  288. 9875
  289. 9875
  290. 26685
  291. 25254
  292. 12762
  293. 9875
  294. 4875
  295. 3513
  296. 15231
  297. 10641
  298. 2301
  299. 9875
  300. 9875
  301. 17940
  302. 2172
  303. 16959
  304. 26046
  305. 9875
  306. 10509
  307. 9875
  308. 9875
  309. 4332
  310. 17205
  311. 9875
  312. 9875
  313. 9875
  314. 11430
  315. 26778
  316. 19869
  317. 26118
  318. 12834
  319. 1218
  320. 9875
  321. 11529
  322. 9875
  323. 8034
  324. 9875
  325. 4314
  326. 15129
  327. 9875
  328. 16197
  329. 9875
  330. 9875
  331. 8803
  332. 26814
  333. 9875
  334. 9875
  335. 9875
  336. 9158
  337. 11175
  338. 9875
  339. 9875
  340. 9875
  341. 27879
  342. 27540
  343. 6471
  344. 6471
  345. 19779
  346. 9875
  347. 31767
  348. 22293
  349. 24849
  350. 10107
  351. 12600
  352. 12873
  353. 9875
  354. 18921
  355. 9875
  356. 9875
  357. 5778
  358. 31509
  359. 18393
  360. 30876
  361. 29946
  362. 27864
  363. 9875
  364. 9875
  365. 7071
  366. 28377
  367. 20808
  368. 26523
  369. 15120
  370. 9552
  371. 9875
  372. 9875
  373. 20838
  374. 9875
  375. 19155
  376. 8154
  377. 26430
  378. 9875
  379. 21294
  380. 17748
  381. 831
  382. 9807
  383. 8544
  384. 27408
  385. 4875
  386. 23806
  387. 9875
  388. 9432
  389. 9875
  390. 18606
  391. 24442
  392. 9875
  393. 13053
  394. 30162
  395. 10002
  396. 7083
  397. 13056
  398. 26811
  399. 11277
  400. 25137
  401. 9875
  402. 9915
  403. 9798
  404. 9875
  405. 14613
  406. 24330
  407. 9875
  408. 9927
  409. 4902
  410. 8463
  411. 9875
  412. 31782
  413. 9875
  414. 9875
  415. 9875
  416. 7092
  417. 11619
  418. 25527
  419. 23034
  420. 9875
  421. 22722
  422. 9875
  423. 25692
  424. 19311
  425. 19227
  426. 25767
  427. 11523
  428. 9875
  429. 19947
  430. 9875
  431. 19812
  432. 1014
  433. 16371
  434. 14799
  435. 18183
  436. 26037
  437. 9875
  438. 9875
  439. 9875
  440. 21046
  441. 927
  442. 18408
  443. 10740
  444. 20001
  445. 9875
  446. 9012
  447. 462
  448. 4044
  449. 8808
  450. 25112
  451. 29916
  452. 23349
  453. 9875
  454. 13029
  455. 25902
  456. 13416
  457. 20934
  458. 28785
  459. 28257
  460. 27192
  461. 10911
  462. 9875
  463. 7677
  464. 9875
  465. 20844
  466. 9875
  467. 16191
  468. 5394
  469. 21279
  470. 9875
  471. 23246
  472. 11088
  473. 6501
  474. 21387
  475. 15783
  476. 11100
  477. 11811
  478. 24843
  479. 17730
  480. 16641
  481. 7923
  482. 20031
  483. 16206
  484. 9875
  485. 31653
  486. 15282
  487. 1740
  488. 9875
  489. 9875
  490. 8043
  491. 27758
  492. 9875
  493. 8436
  494. 23781
  495. 14067
  496. 22233
  497. 25112
  498. 9875
  499. 2101
  500. 2101
  501. 9875
  502. 21267
  503. 5989
  504. 9875
  505. 9875
  506. 249
  507. 28357
  508. 25161
  509. 31839
  510. 22042
  511. 9875
  512. 9875
  513. 981
  514. 15192
  515. 10299
  516. 19515
  517. 2562
  518. 15579
  519. 22482
  520. 9875
  521. 9875
  522. 9875
  523. 17148
  524. 9875
  525. 18636
  526. 32075
  527. 20430
  528. 9875
  529. 177
  530. 19305
  531. 25858
  532. 22590
  533. 25155
  534. 18438
  535. 30638
  536. 9875
  537. 9875
  538. 27192
  539. 29769
  540. 9875
  541. 10578
  542. 5724
  543. 29009
  544. 9875
  545. 27616
  546. 11463
  547. 4365
  548. 14538
  549. 8577
  550. 6783
  551. 18531
  552. 9924
  553. 16353
  554. 9875
  555. 25161
  556. 24237
  557. 13560
  558. 22506
  559. 3240
  560. 10587
  561. 1881
  562. 25320
  563. 13221
  564. 31875
  565. 6411
  566. 17310
  567. 2934
  568. 20622
  569. 9875
  570. 5042
  571. 5329
  572. 27432
  573. 16122
  574. 9875
  575. 1389
  576. 19437
  577. 7572
  578. 9875
  579. 13263
  580. 9875
  581. 18234
  582. 19422
  583. 7464
  584. 2997
  585. 27852
  586. 981
  587. 3426
  588. 9875
  589. 4197
  590. 4725
  591. 16707
  592. 16707
  593. 29898
  594. 7017
  595. 5991
  596. 9875
  597. 23871
  598. 9875
  599. 9875
  600. 2226
  601. 2226
  602. 7110
  603. 9875
  604. 29856
  605. 23121
  606. 15000
  607. 12651
  608. 13626
  609. 29883
  610. 3744
  611. 28809
  612. 11826
  613. 9875
  614. 2508
  615. 16521
  616. 10836
  617. 11493
  618. 13860
  619. 23514
  620. 9875
  621. 10110
  622. 4860
  623. 5075
  624. 9875
  625. 27702
  626. 1827
  627. 32073
  628. 8784
  629. 17577
  630. 9126
  631. 9875
  632. 9456
  633. 9875
  634. 22053
  635. 9875
  636. 20937
  637. 9291
  638. 10212
  639. 10212
  640. 2019
  641. 18348
  642. 9222
  643. 2301
  644. 9875
  645. 4536
  646. 6213
  647. 27963
  648. 8550
  649. 5382
  650. 9875
  651. 23094
  652. 8325
  653. 29595
  654. 9875
  655. 28377
  656. 9875
  657. 14562
  658. 28356
  659. 29361
  660. 24159
  661. 11673
  662. 28307
  663. 8937
  664. 15214
  665. 7350
  666. 5697
  667. 17493
  668. 9875
  669. 22548
  670. 21333
  671. 9576
  672. 24450
  673. 24837
  674. 9875
  675. 9875
  676. 9875
  677. 12228
  678. 5937
  679. 20880
  680. 8808
  681. 9875
  682. 9875
  683. 20148
  684. 19536
  685. 29658
  686. 20424
  687. 23454
  688. 9875
  689. 19506
  690. 9875
  691. 9875
  692. 14586
  693. 25824
  694. 9875
  695. 1926
  696. 31530
  697. 9875
  698. 9875
  699. 27747
  700. 32814
  701. 9875
  702. 23955
  703. 17160
  704. 11910
  705. 9875
  706. 12699
  707. 9372
  708. 5004
  709. 171
  710. 10131
  711. 8457
  712. 6066
  713. 25209
  714. 24600
  715. 9875
  716. 19551
  717. 26451
  718. 32508
  719. 13596
  720. 9875
  721. 9875
  722. 25905
  723. 9875
  724. 29850
  725. 26496
  726. 32091
  727. 23013
  728. 4701
  729. 1956
  730. 28668
  731. 12504
  732. 12210
  733. 1371
  734. 31935
  735. 14434
  736. 9875
  737. 21069
  738. 22314
  739. 6471
  740. 5982
  741. 9875
  742. 12435
  743. 26295
  744. 12558
  745. 16107
  746. 31317
  747. 9875
  748. 7758
  749. 22818
  750. 9875
  751. 9420
  752. 9875
  753. 13356
  754. 9231
  755. 31827
  756. 8454
  757. 23131
  758. 23022
  759. 9875
  760. 29445
  761. 29196
  762. 20820
  763. 9875
  764. 9875
  765. 14553
  766. 9875
  767. 21648
  768. 2667
  769. 9875
  770. 9875
  771. 13197
  772. 16527
  773. 5769
  774. 9875
  775. 9875
  776. 9875
  777. 9875
  778. 15681
  779. 25079
  780. 9875
  781. 15701
  782. 28785
  783. 23085
  784. 29904
  785. 15171
  786. 22677
  787. 28926
  788. 26763
  789. 19575
  790. 25614
  791. 32300
  792. 30903
  793. 26559
  794. 9875
  795. 10626
  796. 26526
  797. 10791
  798. 3837
  799. 9875
  800. 19173
  801. 24270
  802. 16062
  803. 30078
  804. 10050
  805. 5346
  806. 9875
  807. 9875
  808. 4149
  809. 5346
  810. 9875
  811. 9875
  812. 17556
  813. 28335
  814. 17667
  815. 2367
  816. 9875
  817. 9658
  818. 9875
  819. 10095
  820. 9875
  821. 9875
  822. 9875
  823. 24141
  824. 9875
  825. 17490
  826. 789
  827. 31551
  828. 28626
  829. 18623
  830. 6564
  831. 9875
  832. 1623
  833. 9875
  834. 21851
  835. 28155
  836. 18891
  837. 22866
  838. 22800
  839. 23118
  840. 4281
  841. 9875
  842. 9875
  843. 4272
  844. 8478
  845. 8535
  846. 11700
  847. 23727
  848. 2292
  849. 9875
  850. 8086
  851. 9875
  852. 11208
  853. 9875
  854. 23922
  855. 31318
  856. 25035
  857. 9875
  858. 9414
  859. 9875
  860. 7268
  861. 5466
  862. 9875
  863. 25079
  864. 26736
  865. 32802
  866. 774
  867. 28594
  868. 9875
  869. 17006
  870. 11253
  871. 9875
  872. 3828
  873. 9875
  874. 6027
  875. 25152
  876. 26193
  877. 5520
  878. 9875
  879. 2367
  880. 14328
  881. 9318
  882. 14400
  883. 24240
  884. 14430
  885. 14121
  886. 8547
  887. 8727
  888. 9789
  889. 4309
  890. 31464
  891. 18114
  892. 12723
  893. 7008
  894. 1749
  895. 25893
  896. 26832
  897. 14673
  898. 9875
  899. 21958
  900. 9875
  901. 5040
  902. 1812
  903. 9875
  904. 32691
  905. 9875
  906. 28278
  907. 16668
  908. 25035
  909. 1386
  910. 11106
  911. 29943
  912. 18801
  913. 9875
  914. 12792
  915. 3798
  916. 18957
  917. 25350
  918. 9875
  919. 31029
  920. 23781
  921. 22737
  922. 9875
  923. 4158
  924. 9875
  925. 6687
  926. 23490
  927. 22281
  928. 17947
  929. 9875
  930. 9423
  931. 25152
  932. 9875
  933. 5394
  934. 21261
  935. 23832
  936. 26010
  937. 4872
  938. 28881
  939. 9834
  940. 9714
  941. 9875
  942. 16434
  943. 6324
  944. 24852
  945. 28020
  946. 10907
  947. 9875
  948. 14826
  949. 23525
  950. 9875
  951. 5757
  952. 9675
  953. 15492
  954. 9522
  955. 26022
  956. 2688
  957. 7860
  958. 23664
  959. 31938
  960. 9875
  961. 3240
  962. 28146
  963. 15531
  964. 6267
  965. 6243
  966. 11136
  967. 14193
  968. 9875
  969. 9875
  970. 2148
  971. 22587
  972. 17229
  973. 9875
  974. 9875
  975. 9875
  976. 27039
  977. 29427
  978. 5268
  979. 8211
  980. 4095
  981. 19287
  982. 21999
  983. 31726
  984. 9753
  985. 32685
  986. 14841
  987. 3019
  988. 11235
  989. 23157
  990. 9875
  991. 9875
  992. 15129
  993. 22491
  994. 6870
  995. 21678
  996. 19848
  997. 7362
  998. 26089
  999. 24918
  1000. 9875
  1001. 22083
  1002. 9875
  1003. 18543
  1004. 14031
  1005. 14847
  1006. 21939
  1007. 17573
  1008. 23298
  1009. 19092
  1010. 9875
  1011. 23487
  1012. 2826
  1013. 25518
  1014. 9875
  1015. 9875
  1016. 21522
  1017. 6297
  1018. 9875
  1019. 28740
  1020. 17598
  1021. 32844
  1022. 9875
  1023. 24810
  1024. 17312
  1025. 3780
  1026. 9875
  1027. 12177
  1028. 21321
  1029. 9875
  1030. 186
  1031. 9875
  1032. 27948
  1033. 9875
  1034. 8646
  1035. 23154
  1036. 10038
  1037. 17325
  1038. 9875
  1039. 11910
  1040. 12882
  1041. 29958
  1042. 1425
  1043. 9855
  1044. 13149
  1045. 19476
  1046. 21738
  1047. 5262
  1048. 13524
  1049. 30654
  1050. 22152
  1051. 27861
  1052. 12825
  1053. 3498
  1054. 29235
  1055. 29784
  1056. 13287
  1057. 9875
  1058. 9021
  1059. 14199
  1060. 4158
  1061. 8151
  1062. 9875
  1063. 14751
  1064. 17025
  1065. 17871
  1066. 16581
  1067. 23724
  1068. 9875
  1069. 1449
  1070. 7152
  1071. 15777
  1072. 23751
  1073. 9875
  1074. 29310
  1075. 9875
  1076. 3729
  1077. 30096
  1078. 9875
  1079. 26751
  1080. 17238
  1081. 2730
  1082. 9875
  1083. 29100
  1084. 17157
  1085. 19992
  1086. 1209
  1087. 13332
  1088. 756
  1089. 2103
  1090. 13620
  1091. 1350
  1092. 6993
  1093. 5976
  1094. 8526
  1095. 3552
  1096. 30189
  1097. 10596
  1098. 22437
  1099. 9875
  1100. 23778
  1101. 15039
  1102. 26217
  1103. 12960
  1104. 28524
  1105. 4113
  1106. 27057
  1107. 11976
  1108. 29775
  1109. 22998
  1110. 14700
  1111. 9875
  1112. 9875
  1113. 9875
  1114. 9875
  1115. 15360
  1116. 31242
  1117. 30348
  1118. 3801
  1119. 5691
  1120. 3132
  1121. 22821
  1122. 9875
  1123. 18624
  1124. 15681
  1125. 20340
  1126. 9270
  1127. 9741
  1128. 16107
  1129. 4914
  1130. 9210
  1131. 3060
  1132. 27384
  1133. 26685
  1134. 9297
  1135. 9875
  1136. 19014
  1137. 30486
  1138. 25680
  1139. 14136
  1140. 12513
  1141. 9875
  1142. 6828
  1143. 9875
  1144. 26277
  1145. 25926
  1146. 120
  1147. 6717
  1148. 26581
  1149. 9875
  1150. 9875
  1151. 18153
  1152. 16773
  1153. 12255
  1154. 9875
  1155. 16698
  1156. 552
  1157. 9875
  1158. 9875
  1159. 28968
  1160. 14145
  1161. 5844
  1162. 9875
  1163. 21210
  1164. 27438
  1165. 5364
  1166. 9875
  1167. 7660
  1168. 8748
  1169. 13047
  1170. 9875
  1171. 22362
  1172. 8286
  1173. 17568
  1174. 9875
  1175. 28047
  1176. 18831
  1177. 26232
  1178. 9875
  1179. 9875
  1180. 1695
  1181. 11103
  1182. 9875
  1183. 17967
  1184. 24369
  1185. 2514
  1186. 9875
  1187. 9875
  1188. 9875
  1189. 21444
  1190. 11928
  1191. 5250
  1192. 9875
  1193. 9875
  1194. 20187
  1195. 5772
  1196. 31535
  1197. 9875
  1198. 22548
  1199. 19485
  1200. 9875
  1201. 11397
  1202. 15018
  1203. 26771
  1204. 1461
  1205. 9875
  1206. 7022
  1207. 32693
  1208. 9875
  1209. 28338
  1210. 25122
  1211. 13044
  1212. 21939
  1213. 5766
  1214. 26463
  1215. 24912
  1216. 25800



































阅读(3404) | 评论(2) | 转发(0) |
0

上一篇:I have a Dream

下一篇:[ADV 05] Common Ancestor

给主人留下些什么吧!~~