This commit is contained in:
indigolxy
2023-10-05 13:12:24 +08:00
commit 18e12a89c0
46 changed files with 1676491 additions and 0 deletions

136
Michelle/README.md Normal file
View File

@ -0,0 +1,136 @@
# Michelle 的学生会工作
[评测地址](https://acm.sjtu.edu.cn/OnlineJudge/problem?problem_id=1346)
## 1 背景
Michelle 接到了花咲川学生会的协助请求,想要她帮忙写一个程序管理学生的信息。但她还有 `Hello, Happy World` 新曲的编曲没有完成,实在是没有时间了。你能帮帮她吗?
## 2 题目目的
本题目为 ICPC Management System 的前置作业,意在确保大家掌握结构体与部分 STL 容器的基本操作。
## 3 任务描述
在这个任务中,你需要实现一个管理系统,通过控制台输入对学生信息进行维护。
题目保证:
* 输入格式合法
* 在开始统计前只会出现 `ADD` 操作
* `START` 操作仅出现一次
具体需要实现以下操作。
### 添加学生
```
ADD <name> <gender> <class> <score0> ... <score8>
```
向系统中添加一名学生。学生有 12 个参数,`name``gender``class` 与 9 个成绩。
* `name`为长度不超过 30 的字符串,由数字、大小写字母与下划线组成;
* `gender` 为一个字母,`M` 代表男性,`F` 代表女性;
* `class` 为 $[1,20]$ 内的一个整数;
* `scorei` 为课程代号为 ii = 0, 1, ..., 8的课程的得分得分为 $[1,100]$ 内的一个整数。
开始统计后不能再添加学生。若已经开始统计,输出 `[Error]Cannot add student now.`;若未开始统计但学生名字重复输出 `[Error]Add failed.`
本题中,添加失败只有一种情况,即学生名字重复。
### 开始统计
```
START
```
开始进行学生的成绩统计。在开始统计时,榜单应该按照顺序排列。
### 更新成绩
```
UPDATE <name> <code> <score>
```
更新学生 `name` 课程代号为 `code` 的分数为 `score`。保证 `score` 为 $[0,100]$ 内的整数,`code` 为 $[0,8]$ 内的整数。
若学生不存在输出 `[Error]Update failed.`
### 刷新榜单
```
FLUSH
```
刷新榜单。**注意更改学生成绩但未刷新榜单时榜单的排名不会变化**(但数据可能变化)。
### 输出榜单
```
PRINTLIST
```
输出共 N学生总数每行以
```
<rank> <name> <gender> <class> <avg_score>
```
的格式输出,其中 `rank``1-based``gender` 男性输出`male`,女性输出 `female``avg_score` 为该学生所有分数的平均值,向下取整。
学生的排名由平均成绩(即 `avg_score`,注意为向下取整的平均成绩)决定,平均成绩高者靠前;平均成绩相同时从 0 到 8 分别比较成绩,成绩高者靠前;依旧平局时,比较学生名字的字典序,字典序较小者靠前。
### 查询学生排名
```
QUERY <name>
```
若学生存在,以
```
STUDENT <name> NOW AT RANKING <ranking>
```
的格式输出学生的排名1-based。否则输出 `[Error]Query failed.`
### 退出程序
```
END
```
结束程序。
## 4 数据范围
学生总数为 $n$ ,操作次数为 $\mathit{opt}$ 。
对于 60% 数据, $n\le 100$ $\mathit{opt}\le 3\times 10^3$ 。​​
对于 100% 数据, $n\le 10^4$ $\mathit{opt}\le 3\times 10^5$ ​。​
## 5 提示
在这道题目中,你应该使用一个 `struct` 去保存所有学生的信息,并使用一个 `string` 到该结构体的 `map` 来维护学生的信息;同时,你需要使用 `set` 维护一个排行榜,排序标准为学生的成绩。
`map``set` 的相关接口可以在 cpp reference 上学习。
本目录下的 `data` 文件夹即 Online Judge 上的测试数据点。
`START` 之后,各个指令出现的频率大致如下:
* `UPDATE` 45%
* `QUERY` 45%
* `ADD` 5%
* `FLUSH` 4.9%
* `PRINTLIST` 0.1%
如果你遇到 `Time Limit Exceed` 的问题,可以考虑以下几种优化方法。
*`map` 换成 `unordered_map`。这两个容器在接口上十分相似,且均实现了映射的功能,但 `unordered_map` 的性能较好。(相应的,`unordered_map` 牺牲了容器内元素的有序性。)
* 避免使用函数的值传递,改成 `const &` 传递。
* 你是否在 `map``set` 中各保存了一份学生信息?对于冗余信息的大量移动与复制是十分消耗时间的。可以在 `set` 中只保存少量元素,例如只保存学生名字,或者使用一个数组或者 `vector` 来存放学生的信息,`map``set` 都只存放学生在 `vector` 中的位置。
* 你是否每次 QUERY 指令都要从头遍历一遍 `set`?这个操作的时间复杂度是 $O(n)$ 的,对于占比 45% 的 QUERY 指令来说是一个不可接受的复杂度。可以尝试把这个排名存下来,输出的时候直接去调用。
* 对于 FLUSH 指令,你是否在执行时将 `set` 清空并全部重新插入?你可以试试在 UPDATE 时就维护正确的排名。注意,当 `set` 中的元素值变化后,其在容器中的位置 **不会** 及时更新;你可以通过把这个元素 erase 之后重新 insert 来刷新这个元素的位置。

100
Michelle/data/1.in Normal file
View File

@ -0,0 +1,100 @@
ADD student_LP M 8 17 74 94 57 88 31 55 18 28
ADD student_USD F 5 90 55 6 11 18 88 92 90 82
ADD student_GMFFN F 14 40 71 13 38 70 36 1 7 78
ADD student_FOXZP F 2 79 42 77 91 38 13 0 64 95
ADD student_MK F 19 17 74 94 57 88 31 55 18 28
ADD student_QV F 15 32 98 65 59 85 7 28 73 85
ADD student_EZYC F 7 14 4 36 67 22 71 66 69 82
ADD student_FSMKW M 14 74 30 70 91 65 73 82 81 18
ADD student_RNQK F 11 81 79 80 19 41 40 28 32 5
ADD student_MNECASL F 5 8 31 36 9 73 3 95 73 0
START
UPDATE student_FSMKW 7 12
QUERY student_RNQK
UPDATE student_USD 8 19
UPDATE student_USD 8 65
UPDATE student_EZYC 8 27
UPDATE student_FOXZP 8 33
QUERY student_USD
UPDATE student_EZYC 3 52
UPDATE student_RNQK 1 70
QUERY student_MK
QUERY student_MNECASL
UPDATE student_FOXZP 5 64
UPDATE student_RNQK 5 42
QUERY student_EZYC
QUERY student_MNECASL
QUERY student_MK
QUERY student_USD
UPDATE student_MK 8 62
QUERY student_YUAC
QUERY student_RNQK
QUERY student_EZYC
QUERY student_RNQK
QUERY student_RNQK
QUERY student_MK
QUERY student_MK
UPDATE student_LP 8 87
QUERY student_USD
QUERY student_RNQK
QUERY student_MNECASL
QUERY student_RNQK
QUERY student_FOXZP
QUERY student_MNECASL
UPDATE student_LP 4 38
UPDATE student_QV 2 97
UPDATE student_LP 1 69
QUERY student_BLUYZ
QUERY student_GMFFN
UPDATE student_JRXZO 2 40
UPDATE student_RNQK 7 56
UPDATE student_LP 5 93
QUERY student_OT
QUERY student_USD
QUERY student_FSMKW
FLUSH
QUERY student_USD
UPDATE student_LP 4 87
UPDATE student_FOXZP 1 75
UPDATE student_EZYC 0 50
QUERY student_MK
QUERY student_MK
UPDATE student_MMH 1 93
QUERY student_MK
UPDATE student_FSMKW 4 11
UPDATE student_RNQK 1 56
UPDATE student_GMFFN 4 50
UPDATE student_FOXZP 5 94
UPDATE student_USD 1 50
QUERY student_EZYC
UPDATE student_MXDQWSJ 0 55
UPDATE student_USD 7 6
UPDATE student_EZYC 8 41
QUERY student_EZYC
QUERY student_ZAAYDQL
QUERY student_RNQK
QUERY student_FSMKW
UPDATE student_MK 7 19
UPDATE student_MNECASL 4 80
UPDATE student_NSIOPEB 5 69
UPDATE student_LP 8 82
UPDATE student_GMFFN 8 46
UPDATE student_KGEJPZT 7 32
UPDATE student_QV 8 11
UPDATE student_EZYC 2 83
UPDATE student_GMFFN 4 40
QUERY student_QV
UPDATE student_FOXZP 8 72
UPDATE student_USD 5 98
QUERY student_LP
UPDATE student_EZYC 2 10
QUERY student_EZYC
UPDATE student_FSMKW 8 47
UPDATE student_MNECASL 8 54
UPDATE student_TNMAA 2 58
QUERY student_MK
QUERY student_MK
QUERY student_FOXZP
FLUSH
PRINTLIST
END

57
Michelle/data/1.out Normal file
View File

@ -0,0 +1,57 @@
STUDENT student_RNQK NOW AT RANKING 8
STUDENT student_USD NOW AT RANKING 2
STUDENT student_MK NOW AT RANKING 6
STUDENT student_MNECASL NOW AT RANKING 10
STUDENT student_EZYC NOW AT RANKING 7
STUDENT student_MNECASL NOW AT RANKING 10
STUDENT student_MK NOW AT RANKING 6
STUDENT student_USD NOW AT RANKING 2
[Error]Query failed.
STUDENT student_RNQK NOW AT RANKING 8
STUDENT student_EZYC NOW AT RANKING 7
STUDENT student_RNQK NOW AT RANKING 8
STUDENT student_RNQK NOW AT RANKING 8
STUDENT student_MK NOW AT RANKING 6
STUDENT student_MK NOW AT RANKING 6
STUDENT student_USD NOW AT RANKING 2
STUDENT student_RNQK NOW AT RANKING 8
STUDENT student_MNECASL NOW AT RANKING 10
STUDENT student_RNQK NOW AT RANKING 8
STUDENT student_FOXZP NOW AT RANKING 4
STUDENT student_MNECASL NOW AT RANKING 10
[Error]Query failed.
STUDENT student_GMFFN NOW AT RANKING 9
[Error]Update failed.
[Error]Query failed.
STUDENT student_USD NOW AT RANKING 2
STUDENT student_FSMKW NOW AT RANKING 1
STUDENT student_USD NOW AT RANKING 3
STUDENT student_MK NOW AT RANKING 5
STUDENT student_MK NOW AT RANKING 5
[Error]Update failed.
STUDENT student_MK NOW AT RANKING 5
STUDENT student_EZYC NOW AT RANKING 8
[Error]Update failed.
STUDENT student_EZYC NOW AT RANKING 8
[Error]Query failed.
STUDENT student_RNQK NOW AT RANKING 7
STUDENT student_FSMKW NOW AT RANKING 4
[Error]Update failed.
[Error]Update failed.
STUDENT student_QV NOW AT RANKING 1
STUDENT student_LP NOW AT RANKING 2
STUDENT student_EZYC NOW AT RANKING 8
[Error]Update failed.
STUDENT student_MK NOW AT RANKING 5
STUDENT student_MK NOW AT RANKING 5
STUDENT student_FOXZP NOW AT RANKING 6
1 student_FOXZP female 2 65
2 student_LP male 8 63
3 student_MK female 19 55
4 student_FSMKW male 14 54
5 student_QV female 15 54
6 student_USD female 5 48
7 student_RNQK female 11 45
8 student_MNECASL female 5 43
9 student_EZYC female 7 42
10 student_GMFFN female 14 32

300000
Michelle/data/10.in Normal file

File diff suppressed because it is too large Load Diff

446809
Michelle/data/10.out Normal file

File diff suppressed because it is too large Load Diff

100
Michelle/data/2.in Normal file
View File

@ -0,0 +1,100 @@
ADD student_LP M 8 17 74 94 57 88 31 55 18 28
ADD student_USD F 5 90 55 6 11 18 88 92 90 82
ADD student_GMFFN F 14 40 71 13 38 70 36 1 7 78
ADD student_FOXZP F 2 79 42 77 91 38 13 0 64 95
ADD student_MK F 19 17 74 94 57 88 31 55 18 28
ADD student_QV F 15 32 98 65 59 85 7 28 73 85
ADD student_EZYC F 7 14 4 36 67 22 71 66 69 82
ADD student_FSMKW M 14 74 30 70 91 65 73 82 81 18
ADD student_RNQK F 11 81 79 80 19 41 40 28 32 5
ADD student_MNECASL F 5 8 31 36 9 73 3 95 73 0
ADD student_ZBE F 11 38 10 83 55 44 19 45 82 15
ADD student_EGKU M 6 34 39 33 74 62 32 18 58 49
START
UPDATE student_KEMYHFG 4 7
UPDATE student_MNECASL 4 27
QUERY student_MK
ADD student_EZYC F 9 73 4 82 11 34 97 45 79 8
UPDATE student_MK 7 45
QUERY student_USD
QUERY student_ZBE
QUERY student_EZYC
UPDATE student_USD 3 65
QUERY student_MK
QUERY student_LP
QUERY student_EZYC
QUERY student_RNQK
UPDATE student_EZYC 8 87
QUERY student_MNECASL
QUERY student_LP
QUERY student_QV
QUERY student_EZYC
QUERY student_EGKU
QUERY student_USD
UPDATE student_EZYC 4 38
UPDATE student_QV 2 97
UPDATE student_EZYC 1 69
QUERY student_BLUYZ
QUERY student_GMFFN
UPDATE student_JRXZO 2 40
UPDATE student_LP 7 56
UPDATE student_LP 5 93
QUERY student_OT
QUERY student_USD
QUERY student_FOXZP
FLUSH
QUERY student_MNECASL
UPDATE student_MK 4 87
UPDATE student_QV 1 75
UPDATE student_LP 0 50
QUERY student_ZBE
QUERY student_EZYC
UPDATE student_MMH 1 93
QUERY student_ZBE
UPDATE student_USD 4 11
UPDATE student_GMFFN 1 56
UPDATE student_GMFFN 4 50
UPDATE student_FSMKW 5 94
UPDATE student_FOXZP 1 50
QUERY student_GMFFN
UPDATE student_MXDQWSJ 0 55
UPDATE student_EGKU 7 6
UPDATE student_EZYC 8 41
QUERY student_RNQK
QUERY student_ZAAYDQL
QUERY student_ZBE
QUERY student_USD
UPDATE student_GMFFN 7 19
UPDATE student_MNECASL 4 80
UPDATE student_NSIOPEB 5 69
UPDATE student_ZBE 8 82
UPDATE student_EZYC 8 46
UPDATE student_KGEJPZT 7 32
UPDATE student_FOXZP 8 11
UPDATE student_RNQK 2 83
UPDATE student_ZBE 4 40
QUERY student_USD
UPDATE student_FOXZP 8 72
UPDATE student_FSMKW 5 98
QUERY student_GMFFN
UPDATE student_GMFFN 2 10
QUERY student_MK
UPDATE student_FSMKW 8 47
UPDATE student_FOXZP 8 54
UPDATE student_TNMAA 2 58
QUERY student_EZYC
QUERY student_EZYC
QUERY student_FSMKW
QUERY student_FOXZP
QUERY student_QV
QUERY student_EGKU
UPDATE student_GMFFN 2 2
UPDATE student_EGKU 1 7
QUERY student_RNQK
UPDATE student_EGKU 2 98
ADD student_FSMKW F 5 3 96 12 77 0 69 62 87 44
QUERY student_NLEID
UPDATE student_USD 2 42
FLUSH
PRINTLIST
END

60
Michelle/data/2.out Normal file
View File

@ -0,0 +1,60 @@
[Error]Update failed.
STUDENT student_MK NOW AT RANKING 6
[Error]Cannot add student now.
STUDENT student_USD NOW AT RANKING 2
STUDENT student_ZBE NOW AT RANKING 10
STUDENT student_EZYC NOW AT RANKING 7
STUDENT student_MK NOW AT RANKING 6
STUDENT student_LP NOW AT RANKING 5
STUDENT student_EZYC NOW AT RANKING 7
STUDENT student_RNQK NOW AT RANKING 8
STUDENT student_MNECASL NOW AT RANKING 12
STUDENT student_LP NOW AT RANKING 5
STUDENT student_QV NOW AT RANKING 3
STUDENT student_EZYC NOW AT RANKING 7
STUDENT student_EGKU NOW AT RANKING 9
STUDENT student_USD NOW AT RANKING 2
[Error]Query failed.
STUDENT student_GMFFN NOW AT RANKING 11
[Error]Update failed.
[Error]Query failed.
STUDENT student_USD NOW AT RANKING 2
STUDENT student_FOXZP NOW AT RANKING 4
STUDENT student_MNECASL NOW AT RANKING 12
STUDENT student_ZBE NOW AT RANKING 10
STUDENT student_EZYC NOW AT RANKING 5
[Error]Update failed.
STUDENT student_ZBE NOW AT RANKING 10
STUDENT student_GMFFN NOW AT RANKING 11
[Error]Update failed.
STUDENT student_RNQK NOW AT RANKING 8
[Error]Query failed.
STUDENT student_ZBE NOW AT RANKING 10
STUDENT student_USD NOW AT RANKING 1
[Error]Update failed.
[Error]Update failed.
STUDENT student_USD NOW AT RANKING 1
STUDENT student_GMFFN NOW AT RANKING 11
STUDENT student_MK NOW AT RANKING 7
[Error]Update failed.
STUDENT student_EZYC NOW AT RANKING 5
STUDENT student_EZYC NOW AT RANKING 5
STUDENT student_FSMKW NOW AT RANKING 2
STUDENT student_FOXZP NOW AT RANKING 6
STUDENT student_QV NOW AT RANKING 3
STUDENT student_EGKU NOW AT RANKING 9
STUDENT student_RNQK NOW AT RANKING 8
[Error]Cannot add student now.
[Error]Query failed.
1 student_FSMKW male 14 70
2 student_USD female 5 68
3 student_LP male 8 66
4 student_QV female 15 60
5 student_MK female 19 54
6 student_EZYC female 7 52
7 student_FOXZP female 2 51
8 student_ZBE female 11 50
9 student_RNQK female 11 45
10 student_EGKU male 6 42
11 student_MNECASL female 5 37
12 student_GMFFN female 14 35

120
Michelle/data/3.in Normal file
View File

@ -0,0 +1,120 @@
ADD student_LP M 8 17 74 94 57 88 31 55 18 28
ADD student_USD F 5 90 55 6 11 18 88 92 90 82
ADD student_GMFFN F 14 40 71 13 38 70 36 1 7 78
ADD student_FOXZP F 2 79 42 77 91 38 13 0 64 95
ADD student_MK F 19 17 74 94 57 88 31 55 18 28
ADD student_QV F 15 32 98 65 59 85 7 28 73 85
ADD student_EZYC F 7 14 4 36 67 22 71 66 69 82
ADD student_FSMKW M 14 74 30 70 91 65 73 82 81 18
ADD student_RNQK F 11 81 79 80 19 41 40 28 32 5
ADD student_MNECASL F 5 8 31 36 9 73 3 95 73 0
ADD student_ZBE F 11 38 10 83 55 44 19 45 82 15
ADD student_EGKU M 6 34 39 33 74 62 32 18 58 49
ADD student_BRKEM M 8 94 7 4 53 47 25 27 64 54
ADD student_ATUKUK M 17 97 45 79 8 68 29 2 90 45
ADD student_IVQ F 15 94 7 4 53 47 25 27 64 54
ADD student_MF M 7 14 53 51 21 30 45 49 17 9
ADD student_SIIU F 3 93 40 73 35 54 80 29 20 2
ADD student_TLRLPY F 11 26 18 72 75 97 54 1 85 57
START
UPDATE student_USD 6 31
UPDATE student_GMFFN 3 21
QUERY student_FSMKW
UPDATE student_MF 0 75
QUERY student_EGKU
QUERY student_ATUKUK
UPDATE student_EZYC 7 93
UPDATE student_QV 7 80
UPDATE student_EGKU 8 91
UPDATE student_GMFFN 0 80
UPDATE student_WGRHQE 4 87
UPDATE student_QV 1 75
UPDATE student_EZYC 0 50
QUERY student_MK
QUERY student_BRKEM
UPDATE student_MMH 1 93
QUERY student_SIIU
UPDATE student_ATUKUK 4 11
UPDATE student_GMFFN 1 56
UPDATE student_GMFFN 4 50
UPDATE student_USD 5 94
UPDATE student_MF 1 50
QUERY student_GMFFN
UPDATE student_MXDQWSJ 0 55
UPDATE student_QV 7 6
UPDATE student_LP 8 41
QUERY student_GMFFN
QUERY student_ZAAYDQL
QUERY student_MK
QUERY student_USD
UPDATE student_GMFFN 7 19
UPDATE student_MNECASL 4 80
UPDATE student_NSIOPEB 5 69
UPDATE student_MK 8 82
UPDATE student_LP 8 46
UPDATE student_KGEJPZT 7 32
UPDATE student_MNECASL 8 11
UPDATE student_GMFFN 2 83
UPDATE student_ZBE 4 40
QUERY student_ATUKUK
UPDATE student_MF 8 72
UPDATE student_FSMKW 5 98
QUERY student_RNQK
UPDATE student_GMFFN 2 10
QUERY student_MK
UPDATE student_FSMKW 8 47
UPDATE student_MNECASL 8 54
UPDATE student_TNMAA 2 58
QUERY student_LP
QUERY student_BRKEM
QUERY student_ATUKUK
QUERY student_FOXZP
QUERY student_QV
QUERY student_EGKU
UPDATE student_IVQ 2 2
UPDATE student_TLRLPY 1 7
QUERY student_RNQK
UPDATE student_EGKU 2 98
ADD student_USD F 5 3 96 12 77 0 69 62 87 44
QUERY student_NLEID
UPDATE student_FSMKW 2 42
QUERY student_FSMKW
QUERY student_YWMX
UPDATE student_RNQK 4 74
UPDATE student_SIIU 1 89
QUERY student_QXXZ
UPDATE student_ZZCSFXK 2 18
QUERY student_ATUKUK
QUERY student_EGKU
QUERY student_ZBE
UPDATE student_FSMKW 5 33
UPDATE student_EK 4 90
QUERY student_QV
UPDATE student_EZYC 1 70
QUERY student_IVQ
ADD student_MK F 1 6 82 24 100 22 39 41 21 49
UPDATE student_USD 5 76
UPDATE student_LP 4 97
QUERY student_TLRLPY
QUERY student_BRKEM
QUERY student_USD
UPDATE student_IVQ 6 46
UPDATE student_ZBE 5 35
UPDATE student_MNECASL 8 69
QUERY student_FOXZP
QUERY student_ZBE
QUERY student_EZYC
QUERY student_SIIU
UPDATE student_LP 2 32
QUERY student_FSMKW
QUERY student_MK
QUERY student_FOXZP
UPDATE student_TLRLPY 0 42
QUERY student_SIIU
ADD student_USD M 11 59 53 65 90 8 80 85 53 77
QUERY student_MK
QUERY student_MK
UPDATE student_TLRLPY 4 56
FLUSH
PRINTLIST
END

72
Michelle/data/3.out Normal file
View File

@ -0,0 +1,72 @@
STUDENT student_FSMKW NOW AT RANKING 1
STUDENT student_EGKU NOW AT RANKING 12
STUDENT student_ATUKUK NOW AT RANKING 6
[Error]Update failed.
STUDENT student_MK NOW AT RANKING 8
STUDENT student_BRKEM NOW AT RANKING 14
[Error]Update failed.
STUDENT student_SIIU NOW AT RANKING 9
STUDENT student_GMFFN NOW AT RANKING 16
[Error]Update failed.
STUDENT student_GMFFN NOW AT RANKING 16
[Error]Query failed.
STUDENT student_MK NOW AT RANKING 8
STUDENT student_USD NOW AT RANKING 2
[Error]Update failed.
[Error]Update failed.
STUDENT student_ATUKUK NOW AT RANKING 6
STUDENT student_RNQK NOW AT RANKING 11
STUDENT student_MK NOW AT RANKING 8
[Error]Update failed.
STUDENT student_LP NOW AT RANKING 7
STUDENT student_BRKEM NOW AT RANKING 14
STUDENT student_ATUKUK NOW AT RANKING 6
STUDENT student_FOXZP NOW AT RANKING 4
STUDENT student_QV NOW AT RANKING 3
STUDENT student_EGKU NOW AT RANKING 12
STUDENT student_RNQK NOW AT RANKING 11
[Error]Cannot add student now.
[Error]Query failed.
STUDENT student_FSMKW NOW AT RANKING 1
[Error]Query failed.
[Error]Query failed.
[Error]Update failed.
STUDENT student_ATUKUK NOW AT RANKING 6
STUDENT student_EGKU NOW AT RANKING 12
STUDENT student_ZBE NOW AT RANKING 13
[Error]Update failed.
STUDENT student_QV NOW AT RANKING 3
STUDENT student_IVQ NOW AT RANKING 15
[Error]Cannot add student now.
STUDENT student_TLRLPY NOW AT RANKING 5
STUDENT student_BRKEM NOW AT RANKING 14
STUDENT student_USD NOW AT RANKING 2
STUDENT student_FOXZP NOW AT RANKING 4
STUDENT student_ZBE NOW AT RANKING 13
STUDENT student_EZYC NOW AT RANKING 10
STUDENT student_SIIU NOW AT RANKING 9
STUDENT student_FSMKW NOW AT RANKING 1
STUDENT student_MK NOW AT RANKING 8
STUDENT student_FOXZP NOW AT RANKING 4
STUDENT student_SIIU NOW AT RANKING 9
[Error]Cannot add student now.
STUDENT student_MK NOW AT RANKING 8
STUDENT student_MK NOW AT RANKING 8
1 student_EZYC female 7 61
2 student_FSMKW male 14 60
3 student_MK female 19 57
4 student_EGKU male 6 56
5 student_FOXZP female 2 55
6 student_SIIU female 3 52
7 student_USD female 5 51
8 student_TLRLPY female 11 49
9 student_QV female 15 49
10 student_RNQK female 11 48
11 student_LP male 8 47
12 student_ATUKUK male 17 45
13 student_MF male 7 45
14 student_ZBE female 11 44
15 student_MNECASL female 5 44
16 student_IVQ female 15 43
17 student_BRKEM male 8 41
18 student_GMFFN female 14 39

300
Michelle/data/4.in Normal file
View File

@ -0,0 +1,300 @@
ADD student_LP M 8 17 74 94 57 88 31 55 18 28
ADD student_USD F 5 90 55 6 11 18 88 92 90 82
ADD student_GMFFN F 14 40 71 13 38 70 36 1 7 78
ADD student_FOXZP F 2 79 42 77 91 38 13 0 64 95
ADD student_MK F 19 17 74 94 57 88 31 55 18 28
ADD student_QV F 15 32 98 65 59 85 7 28 73 85
ADD student_EZYC F 7 14 4 36 67 22 71 66 69 82
ADD student_FSMKW M 14 74 30 70 91 65 73 82 81 18
ADD student_RNQK F 11 81 79 80 19 41 40 28 32 5
ADD student_MNECASL F 5 8 31 36 9 73 3 95 73 0
ADD student_ZBE F 11 38 10 83 55 44 19 45 82 15
ADD student_EGKU M 6 34 39 33 74 62 32 18 58 49
ADD student_BRKEM M 8 94 7 4 53 47 25 27 64 54
ADD student_ATUKUK M 17 97 45 79 8 68 29 2 90 45
ADD student_IVQ F 15 94 7 4 53 47 25 27 64 54
ADD student_MF M 7 14 53 51 21 30 45 49 17 9
ADD student_SIIU F 3 93 40 73 35 54 80 29 20 2
ADD student_TLRLPY F 11 26 18 72 75 97 54 1 85 57
ADD student_PVDB F 9 21 35 11 44 71 22 15 83 75
ADD student_OFJLP F 6 93 73 84 93 78 80 62 97 58
ADD student_SPOKPZE F 5 19 80 17 29 56 87 51 16 32
ADD student_IVFCTA F 3 14 53 51 21 30 45 49 17 9
ADD student_RZ F 1 29 93 70 93 60 13 93 49 52
ADD student_NVSN M 16 21 50 92 50 49 61 94 100 64
START
UPDATE student_SPOKPZE 8 53
QUERY student_MNECASL
UPDATE student_FOXZP 3 6
QUERY student_MNECASL
QUERY student_MF
QUERY student_SIIU
QUERY student_LP
UPDATE student_USD 8 6
QUERY student_IVFCTA
UPDATE student_SIIU 7 3
UPDATE student_OFJLP 0 21
QUERY student_MK
UPDATE student_CRHICLY 8 74
FLUSH
UPDATE student_EGKU 0 7
UPDATE student_NGIJAC 0 31
UPDATE student_ATUKUK 5 99
QUERY student_IVFCTA
QUERY student_USD
UPDATE student_OFJLP 3 60
QUERY student_MNECASL
UPDATE student_IVQ 0 48
QUERY student_SIIU
QUERY student_SIIU
UPDATE student_EZYC 6 45
UPDATE student_EZYC 7 83
UPDATE student_QV 8 61
UPDATE student_EGKU 0 64
UPDATE student_BRKEM 3 12
QUERY student_IVQ
QUERY student_VCPV
UPDATE student_BRKEM 1 43
QUERY student_TLRLPY
UPDATE student_FSMKW 6 32
QUERY student_OFJLP
QUERY student_FOXZP
QUERY student_QV
QUERY student_NVSN
UPDATE student_GMFFN 2 2
UPDATE student_EGKU 1 7
QUERY student_SPOKPZE
UPDATE student_EGKU 2 98
ADD student_OFJLP F 5 3 96 12 77 0 69 62 87 44
QUERY student_NLEID
UPDATE student_USD 2 42
QUERY student_USD
QUERY student_YWMX
UPDATE student_SPOKPZE 4 74
UPDATE student_ZBE 1 89
QUERY student_QXXZ
UPDATE student_ZZCSFXK 2 18
QUERY student_FSMKW
QUERY student_NVSN
QUERY student_SIIU
UPDATE student_USD 5 33
UPDATE student_EK 4 90
QUERY student_TLRLPY
UPDATE student_PVDB 1 70
QUERY student_IVQ
ADD student_RZ F 1 6 82 24 100 22 39 41 21 49
UPDATE student_FSMKW 5 76
UPDATE student_LP 4 97
QUERY student_NVSN
QUERY student_BRKEM
QUERY student_ATUKUK
UPDATE student_RNQK 6 46
UPDATE student_ZBE 5 35
UPDATE student_MNECASL 8 69
QUERY student_MNECASL
QUERY student_MK
QUERY student_LP
QUERY student_ZBE
UPDATE student_PVDB 2 32
QUERY student_OFJLP
QUERY student_SIIU
QUERY student_MNECASL
UPDATE student_NVSN 0 42
QUERY student_ZBE
ADD student_OFJLP M 11 59 53 65 90 8 80 85 53 77
QUERY student_RZ
QUERY student_MK
UPDATE student_QV 4 56
ADD student_MK F 11 24 0 95 13 76 29 39 34 3
QUERY student_RNQK
UPDATE student_TLRLPY 7 48
UPDATE student_QV 4 39
UPDATE student_EGKU 7 65
UPDATE student_EGKU 1 55
QUERY student_SIIU
UPDATE student_MK 1 48
QUERY student_SPOKPZE
QUERY student_BRKEM
UPDATE student_ZBE 8 77
UPDATE student_AJZV 0 57
QUERY student_MF
QUERY student_MF
UPDATE student_ATUKUK 7 12
QUERY student_TLRLPY
UPDATE student_NVSN 0 98
ADD student_MK M 18 24 91 84 1 16 20 93 8 23
UPDATE student_TLRLPY 1 49
QUERY student_MK
QUERY student_BRKEM
UPDATE student_FOXZP 5 37
UPDATE student_MNECASL 1 30
QUERY student_RNQK
UPDATE student_USD 7 55
QUERY student_NVSN
QUERY student_SIIU
QUERY student_BRKEM
UPDATE student_ATUKUK 3 60
UPDATE student_EGKU 2 42
QUERY student_NDFB
UPDATE student_ICKVIJN 2 98
UPDATE student_EGKU 6 61
UPDATE student_NVSN 3 78
QUERY student_IVQ
UPDATE student_LP 7 27
UPDATE student_QV 7 31
QUERY student_LP
UPDATE student_NVSN 4 89
UPDATE student_LP 3 45
UPDATE student_IVFCTA 0 91
QUERY student_BRKEM
UPDATE student_PVDB 8 73
QUERY student_IRBUX
QUERY student_MK
UPDATE student_QV 1 48
QUERY student_SIIU
UPDATE student_EZYC 5 3
QUERY student_IVQ
QUERY student_NVSN
UPDATE student_NVSN 1 48
UPDATE student_EGKU 4 58
UPDATE student_MK 7 32
QUERY student_PWKOGV
QUERY student_MF
UPDATE student_ZBE 3 43
UPDATE student_FOXZP 6 18
QUERY student_LP
QUERY student_SIIU
UPDATE student_MNECASL 3 88
UPDATE student_OFJLP 4 72
UPDATE student_MF 0 17
UPDATE student_QV 3 1
UPDATE student_DPVHDGL 4 57
QUERY student_GPANQAD
UPDATE student_NVSN 1 52
QUERY student_IJ
UPDATE student_IVFCTA 6 34
UPDATE student_GMFFN 2 25
QUERY student_PSUIQDD
UPDATE student_QV 7 87
QUERY student_JSEA
UPDATE student_IVFCTA 0 39
QUERY student_EGKU
UPDATE student_MK 3 92
QUERY student_EGKU
UPDATE student_IVQ 8 95
QUERY student_QV
UPDATE student_OFJLP 5 83
QUERY student_MNECASL
UPDATE student_MF 2 14
UPDATE student_IVFCTA 3 26
UPDATE student_USD 2 21
QUERY student_FSMKW
UPDATE student_AM 4 45
QUERY student_PVDB
QUERY student_FOXZP
UPDATE student_TLRLPY 3 3
UPDATE student_USD 2 59
QUERY student_OFJLP
UPDATE student_IVFCTA 4 76
UPDATE student_EZYC 2 90
QUERY student_ATUKUK
UPDATE student_FOXZP 0 14
UPDATE student_TLRLPY 3 49
QUERY student_ATUKUK
UPDATE student_SIIU 5 37
QUERY student_BRKEM
QUERY student_PVDB
QUERY student_MNECASL
UPDATE student_MNECASL 5 58
QUERY student_SIIU
QUERY student_IVFCTA
UPDATE student_GMFFN 1 78
UPDATE student_TLRLPY 8 79
UPDATE student_PVDB 7 100
QUERY student_GMFFN
UPDATE student_IVQ 1 4
QUERY student_ATUKUK
QUERY student_MNECASL
ADD student_ATUKUK F 1 26 66 9 37 34 75 86 35 96
UPDATE student_ATUKUK 1 29
QUERY student_MF
UPDATE student_NVSN 4 75
UPDATE student_TLRLPY 6 70
UPDATE student_USD 7 83
UPDATE student_SPOKPZE 8 1
QUERY student_QT
UPDATE student_IXM 6 45
UPDATE student_EZYC 8 11
QUERY student_ZBE
QUERY student_FOXZP
UPDATE student_ASSBR 5 34
UPDATE student_ZBE 4 29
UPDATE student_FOXZP 3 6
UPDATE student_PVDB 6 30
UPDATE student_USD 8 46
UPDATE student_SIIU 0 40
UPDATE student_NVSN 1 64
UPDATE student_SIIU 5 11
QUERY student_LP
UPDATE student_USD 2 35
QUERY student_FSMKW
UPDATE student_SIIU 8 39
UPDATE student_LP 5 39
ADD student_IVQ F 4 74 54 81 84 73 2 25 63 90
UPDATE student_EGKU 7 17
UPDATE student_SPOKPZE 7 51
UPDATE student_OFJLP 0 42
QUERY student_IVQ
UPDATE student_RNQK 0 15
QUERY student_SIIU
QUERY student_FOXZP
UPDATE student_IVQ 2 66
UPDATE student_GMFFN 5 3
QUERY student_FSMKW
UPDATE student_RZ 6 2
UPDATE student_SIIU 4 95
QUERY student_IVQ
QUERY student_RNQK
UPDATE student_SIIU 0 83
UPDATE student_TLRLPY 8 65
UPDATE student_LP 3 96
ADD student_GHTE F 5 49 4 85 65 99 7 1 6 37
ADD student_MF F 9 76 83 3 80 77 59 21 5 75
UPDATE student_BRKEM 8 32
UPDATE student_QV 6 54
UPDATE student_ATUKUK 7 60
QUERY student_QV
UPDATE student_IVFCTA 3 87
QUERY student_NVSN
QUERY student_MK
UPDATE student_SIIU 6 96
QUERY student_IVQ
QUERY student_IVFCTA
UPDATE student_EZYC 7 52
QUERY student_UZLNRIX
QUERY student_QV
QUERY student_IVQ
QUERY student_LP
UPDATE student_OFJLP 6 17
QUERY student_MF
UPDATE student_MNECASL 2 44
UPDATE student_QV 0 90
QUERY student_FSMKW
QUERY student_MNECASL
QUERY student_USD
UPDATE student_BRKEM 1 66
UPDATE student_RZ 0 32
QUERY student_RZ
QUERY student_IVQ
UPDATE student_LDHEKUL 3 5
UPDATE student_USD 0 53
QUERY student_FSMKW
UPDATE student_OW 8 60
UPDATE student_ZBE 2 68
QUERY student_ATUKUK
UPDATE student_MF 7 91
UPDATE student_LP 0 83
QUERY student_BRKEM
FLUSH
PRINTLIST
END

165
Michelle/data/4.out Normal file
View File

@ -0,0 +1,165 @@
STUDENT student_MNECASL NOW AT RANKING 22
STUDENT student_MNECASL NOW AT RANKING 22
STUDENT student_MF NOW AT RANKING 24
STUDENT student_SIIU NOW AT RANKING 12
STUDENT student_LP NOW AT RANKING 10
STUDENT student_IVFCTA NOW AT RANKING 23
STUDENT student_MK NOW AT RANKING 11
[Error]Update failed.
[Error]Update failed.
STUDENT student_IVFCTA NOW AT RANKING 23
STUDENT student_USD NOW AT RANKING 10
STUDENT student_MNECASL NOW AT RANKING 22
STUDENT student_SIIU NOW AT RANKING 13
STUDENT student_SIIU NOW AT RANKING 13
STUDENT student_IVQ NOW AT RANKING 19
[Error]Query failed.
STUDENT student_TLRLPY NOW AT RANKING 6
STUDENT student_OFJLP NOW AT RANKING 1
STUDENT student_FOXZP NOW AT RANKING 12
STUDENT student_QV NOW AT RANKING 5
STUDENT student_NVSN NOW AT RANKING 3
STUDENT student_SPOKPZE NOW AT RANKING 15
[Error]Cannot add student now.
[Error]Query failed.
STUDENT student_USD NOW AT RANKING 10
[Error]Query failed.
[Error]Query failed.
[Error]Update failed.
STUDENT student_FSMKW NOW AT RANKING 2
STUDENT student_NVSN NOW AT RANKING 3
STUDENT student_SIIU NOW AT RANKING 13
[Error]Update failed.
STUDENT student_TLRLPY NOW AT RANKING 6
STUDENT student_IVQ NOW AT RANKING 19
[Error]Cannot add student now.
STUDENT student_NVSN NOW AT RANKING 3
STUDENT student_BRKEM NOW AT RANKING 18
STUDENT student_ATUKUK NOW AT RANKING 7
STUDENT student_MNECASL NOW AT RANKING 22
STUDENT student_MK NOW AT RANKING 9
STUDENT student_LP NOW AT RANKING 8
STUDENT student_ZBE NOW AT RANKING 17
STUDENT student_OFJLP NOW AT RANKING 1
STUDENT student_SIIU NOW AT RANKING 13
STUDENT student_MNECASL NOW AT RANKING 22
STUDENT student_ZBE NOW AT RANKING 17
[Error]Cannot add student now.
STUDENT student_RZ NOW AT RANKING 4
STUDENT student_MK NOW AT RANKING 9
[Error]Cannot add student now.
STUDENT student_RNQK NOW AT RANKING 14
STUDENT student_SIIU NOW AT RANKING 13
STUDENT student_SPOKPZE NOW AT RANKING 15
STUDENT student_BRKEM NOW AT RANKING 18
[Error]Update failed.
STUDENT student_MF NOW AT RANKING 24
STUDENT student_MF NOW AT RANKING 24
STUDENT student_TLRLPY NOW AT RANKING 6
[Error]Cannot add student now.
STUDENT student_MK NOW AT RANKING 9
STUDENT student_BRKEM NOW AT RANKING 18
STUDENT student_RNQK NOW AT RANKING 14
STUDENT student_NVSN NOW AT RANKING 3
STUDENT student_SIIU NOW AT RANKING 13
STUDENT student_BRKEM NOW AT RANKING 18
[Error]Query failed.
[Error]Update failed.
STUDENT student_IVQ NOW AT RANKING 19
STUDENT student_LP NOW AT RANKING 8
STUDENT student_BRKEM NOW AT RANKING 18
[Error]Query failed.
STUDENT student_MK NOW AT RANKING 9
STUDENT student_SIIU NOW AT RANKING 13
STUDENT student_IVQ NOW AT RANKING 19
STUDENT student_NVSN NOW AT RANKING 3
[Error]Query failed.
STUDENT student_MF NOW AT RANKING 24
STUDENT student_LP NOW AT RANKING 8
STUDENT student_SIIU NOW AT RANKING 13
[Error]Update failed.
[Error]Query failed.
[Error]Query failed.
[Error]Query failed.
[Error]Query failed.
STUDENT student_EGKU NOW AT RANKING 16
STUDENT student_EGKU NOW AT RANKING 16
STUDENT student_QV NOW AT RANKING 5
STUDENT student_MNECASL NOW AT RANKING 22
STUDENT student_FSMKW NOW AT RANKING 2
[Error]Update failed.
STUDENT student_PVDB NOW AT RANKING 20
STUDENT student_FOXZP NOW AT RANKING 12
STUDENT student_OFJLP NOW AT RANKING 1
STUDENT student_ATUKUK NOW AT RANKING 7
STUDENT student_ATUKUK NOW AT RANKING 7
STUDENT student_BRKEM NOW AT RANKING 18
STUDENT student_PVDB NOW AT RANKING 20
STUDENT student_MNECASL NOW AT RANKING 22
STUDENT student_SIIU NOW AT RANKING 13
STUDENT student_IVFCTA NOW AT RANKING 23
STUDENT student_GMFFN NOW AT RANKING 21
STUDENT student_ATUKUK NOW AT RANKING 7
STUDENT student_MNECASL NOW AT RANKING 22
[Error]Cannot add student now.
STUDENT student_MF NOW AT RANKING 24
[Error]Query failed.
[Error]Update failed.
STUDENT student_ZBE NOW AT RANKING 17
STUDENT student_FOXZP NOW AT RANKING 12
[Error]Update failed.
STUDENT student_LP NOW AT RANKING 8
STUDENT student_FSMKW NOW AT RANKING 2
[Error]Cannot add student now.
STUDENT student_IVQ NOW AT RANKING 19
STUDENT student_SIIU NOW AT RANKING 13
STUDENT student_FOXZP NOW AT RANKING 12
STUDENT student_FSMKW NOW AT RANKING 2
STUDENT student_IVQ NOW AT RANKING 19
STUDENT student_RNQK NOW AT RANKING 14
[Error]Cannot add student now.
[Error]Cannot add student now.
STUDENT student_QV NOW AT RANKING 5
STUDENT student_NVSN NOW AT RANKING 3
STUDENT student_MK NOW AT RANKING 9
STUDENT student_IVQ NOW AT RANKING 19
STUDENT student_IVFCTA NOW AT RANKING 23
[Error]Query failed.
STUDENT student_QV NOW AT RANKING 5
STUDENT student_IVQ NOW AT RANKING 19
STUDENT student_LP NOW AT RANKING 8
STUDENT student_MF NOW AT RANKING 24
STUDENT student_FSMKW NOW AT RANKING 2
STUDENT student_MNECASL NOW AT RANKING 22
STUDENT student_USD NOW AT RANKING 10
STUDENT student_RZ NOW AT RANKING 4
STUDENT student_IVQ NOW AT RANKING 19
[Error]Update failed.
STUDENT student_FSMKW NOW AT RANKING 2
[Error]Update failed.
STUDENT student_ATUKUK NOW AT RANKING 7
STUDENT student_BRKEM NOW AT RANKING 18
1 student_NVSN male 16 80
2 student_LP male 8 65
3 student_OFJLP female 6 65
4 student_ATUKUK male 17 59
5 student_FSMKW male 14 59
6 student_MNECASL female 5 59
7 student_TLRLPY female 11 58
8 student_ZBE female 11 56
9 student_MK female 19 53
10 student_SIIU female 3 52
11 student_RZ female 1 51
12 student_PVDB female 9 51
13 student_QV female 15 50
14 student_EGKU male 6 50
15 student_USD female 5 47
16 student_IVQ female 15 47
17 student_IVFCTA female 3 45
18 student_SPOKPZE female 5 45
19 student_FOXZP female 2 43
20 student_BRKEM male 8 41
21 student_RNQK female 11 39
22 student_GMFFN female 14 37
23 student_MF male 7 36
24 student_EZYC female 7 34

500
Michelle/data/5.in Normal file
View File

@ -0,0 +1,500 @@
ADD student_LP M 8 17 74 94 57 88 31 55 18 28
ADD student_USD F 5 90 55 6 11 18 88 92 90 82
ADD student_GMFFN F 14 40 71 13 38 70 36 1 7 78
ADD student_FOXZP F 2 79 42 77 91 38 13 0 64 95
ADD student_MK F 19 17 74 94 57 88 31 55 18 28
ADD student_QV F 15 32 98 65 59 85 7 28 73 85
ADD student_EZYC F 7 14 4 36 67 22 71 66 69 82
ADD student_FSMKW M 14 74 30 70 91 65 73 82 81 18
ADD student_RNQK F 11 81 79 80 19 41 40 28 32 5
ADD student_MNECASL F 5 8 31 36 9 73 3 95 73 0
ADD student_ZBE F 11 38 10 83 55 44 19 45 82 15
ADD student_EGKU M 6 34 39 33 74 62 32 18 58 49
ADD student_BRKEM M 8 94 7 4 53 47 25 27 64 54
ADD student_ATUKUK M 17 97 45 79 8 68 29 2 90 45
ADD student_IVQ F 15 94 7 4 53 47 25 27 64 54
ADD student_MF M 7 14 53 51 21 30 45 49 17 9
ADD student_SIIU F 3 93 40 73 35 54 80 29 20 2
ADD student_TLRLPY F 11 26 18 72 75 97 54 1 85 57
ADD student_PVDB F 9 21 35 11 44 71 22 15 83 75
ADD student_OFJLP F 6 93 73 84 93 78 80 62 97 58
ADD student_SPOKPZE F 5 19 80 17 29 56 87 51 16 32
ADD student_IVFCTA F 3 14 53 51 21 30 45 49 17 9
ADD student_RZ F 1 29 93 70 93 60 13 93 49 52
ADD student_NVSN M 16 21 50 92 50 49 61 94 100 64
ADD student_MKBUW M 10 7 67 6 71 87 38 27 55 83
ADD student_HYE F 5 41 50 6 33 46 81 46 28 37
ADD student_YDQLRW F 5 63 19 71 37 19 93 58 36 2
ADD student_FTRN F 9 69 7 4 69 50 88 23 12 82
ADD student_CCMREF F 11 87 88 47 70 28 32 86 44 60
ADD student_XVAQ F 17 44 29 40 91 20 90 81 49 39
ADD student_DOCDGAO F 11 41 68 10 64 22 77 19 32 12
ADD student_CULLEVC M 14 6 27 43 41 58 91 79 28 85
ADD student_YHKVZ F 20 79 98 43 45 24 4 45 85 2
ADD student_AVRL F 11 94 85 8 98 12 16 92 40 39
ADD student_ABZGQE M 9 2 17 15 35 65 33 17 76 6
ADD student_KUQLGVC F 19 19 80 61 65 74 48 40 68 54
START
UPDATE student_MNECASL 8 40
UPDATE student_EGKU 2 7
QUERY student_QV
UPDATE student_QV 0 17
ADD student_QV M 11 63 39 46 49 15 75 58 58 37
UPDATE student_GMFFN 4 81
UPDATE student_RZ 5 82
QUERY student_XVAQ
UPDATE student_CCMREF 4 7
UPDATE student_RZ 7 18
QUERY student_NVSN
UPDATE student_MUZZXVY 1 41
UPDATE student_GBEAOH 7 50
QUERY student_IVFCTA
UPDATE student_YDQLRW 5 70
QUERY student_IVFCTA
QUERY student_FTRN
UPDATE student_MNECASL 8 69
QUERY student_IVFCTA
QUERY student_CCMREF
QUERY student_MKBUW
QUERY student_ABZGQE
UPDATE student_PVDB 2 32
QUERY student_FSMKW
QUERY student_MK
QUERY student_IVFCTA
UPDATE student_KUQLGVC 0 42
QUERY student_ABZGQE
ADD student_OFJLP M 11 59 53 65 90 8 80 85 53 77
QUERY student_RZ
QUERY student_MK
UPDATE student_TLRLPY 4 56
ADD student_SIIU F 11 24 0 95 13 76 29 39 34 3
QUERY student_SPOKPZE
UPDATE student_TLRLPY 7 48
UPDATE student_QV 4 39
UPDATE student_NVSN 7 65
UPDATE student_NVSN 1 55
QUERY student_MK
UPDATE student_SIIU 1 48
QUERY student_YHKVZ
QUERY student_MKBUW
UPDATE student_ZBE 8 77
UPDATE student_AJZV 0 57
QUERY student_FTRN
QUERY student_FTRN
UPDATE student_USD 7 12
QUERY student_QV
UPDATE student_NVSN 0 98
ADD student_CCMREF M 18 24 91 84 1 16 20 93 8 23
UPDATE student_XVAQ 1 49
QUERY student_MK
QUERY student_BRKEM
UPDATE student_FOXZP 5 37
UPDATE student_AVRL 1 30
QUERY student_RNQK
UPDATE student_ATUKUK 7 55
QUERY student_EGKU
QUERY student_CCMREF
QUERY student_BRKEM
UPDATE student_HYE 3 60
UPDATE student_NVSN 2 42
QUERY student_NDFB
UPDATE student_ICKVIJN 2 98
UPDATE student_KUQLGVC 6 61
UPDATE student_EGKU 3 78
QUERY student_GMFFN
UPDATE student_MKBUW 7 27
UPDATE student_TLRLPY 7 31
QUERY student_BRKEM
UPDATE student_NVSN 4 89
UPDATE student_LP 3 45
UPDATE student_MNECASL 0 91
QUERY student_MKBUW
UPDATE student_EZYC 8 73
QUERY student_IRBUX
QUERY student_CCMREF
UPDATE student_TLRLPY 1 48
QUERY student_MK
UPDATE student_PVDB 5 3
QUERY student_YDQLRW
QUERY student_NVSN
UPDATE student_KUQLGVC 1 48
UPDATE student_NVSN 4 58
UPDATE student_CCMREF 7 32
QUERY student_PWKOGV
QUERY student_FOXZP
UPDATE student_RZ 3 43
UPDATE student_FOXZP 6 18
QUERY student_MKBUW
QUERY student_MK
UPDATE student_MNECASL 3 88
UPDATE student_OFJLP 4 72
UPDATE student_FOXZP 0 17
UPDATE student_TLRLPY 3 1
UPDATE student_DPVHDGL 4 57
QUERY student_GPANQAD
UPDATE student_NVSN 1 52
QUERY student_IJ
UPDATE student_MNECASL 6 34
UPDATE student_GMFFN 2 25
QUERY student_PSUIQDD
UPDATE student_QV 7 87
QUERY student_JSEA
UPDATE student_MNECASL 0 39
QUERY student_KUQLGVC
UPDATE student_SIIU 3 92
QUERY student_KUQLGVC
UPDATE student_IVQ 8 95
QUERY student_QV
UPDATE student_OFJLP 5 83
QUERY student_AVRL
UPDATE student_FTRN 2 14
UPDATE student_IVFCTA 3 26
UPDATE student_ATUKUK 2 21
QUERY student_FSMKW
UPDATE student_AM 4 45
QUERY student_PVDB
QUERY student_MF
UPDATE student_XVAQ 3 3
UPDATE student_HYE 2 59
QUERY student_FSMKW
UPDATE student_AVRL 4 76
UPDATE student_PVDB 2 90
QUERY student_HYE
UPDATE student_MF 0 14
UPDATE student_TLRLPY 3 49
QUERY student_ATUKUK
UPDATE student_SIIU 5 37
QUERY student_LP
QUERY student_PVDB
QUERY student_AVRL
UPDATE student_IVFCTA 5 58
QUERY student_SIIU
QUERY student_IVFCTA
UPDATE student_IVQ 1 78
UPDATE student_QV 8 79
UPDATE student_EZYC 7 100
QUERY student_GMFFN
UPDATE student_IVQ 1 4
QUERY student_ATUKUK
QUERY student_AVRL
ADD student_ATUKUK F 1 26 66 9 37 34 75 86 35 96
UPDATE student_USD 1 29
QUERY student_FTRN
UPDATE student_NVSN 4 75
UPDATE student_QV 6 70
UPDATE student_HYE 7 83
UPDATE student_RNQK 8 1
QUERY student_QT
UPDATE student_IXM 6 45
UPDATE student_DOCDGAO 8 11
QUERY student_RZ
QUERY student_FOXZP
UPDATE student_ASSBR 5 34
UPDATE student_ABZGQE 4 29
UPDATE student_MF 3 6
UPDATE student_DOCDGAO 6 30
UPDATE student_ATUKUK 8 46
UPDATE student_CCMREF 0 40
UPDATE student_EGKU 1 64
UPDATE student_SIIU 5 11
QUERY student_LP
UPDATE student_USD 2 35
QUERY student_FSMKW
UPDATE student_CCMREF 8 39
UPDATE student_LP 5 39
ADD student_GMFFN F 4 74 54 81 84 73 2 25 63 90
UPDATE student_EGKU 7 17
UPDATE student_SPOKPZE 7 51
UPDATE student_OFJLP 0 42
QUERY student_IVQ
UPDATE student_YHKVZ 0 15
QUERY student_SIIU
QUERY student_FTRN
UPDATE student_IVQ 2 66
UPDATE student_IVQ 5 3
QUERY student_FSMKW
UPDATE student_ZBE 6 2
UPDATE student_MK 4 95
QUERY student_IVQ
QUERY student_YHKVZ
UPDATE student_MK 0 83
UPDATE student_XVAQ 8 65
UPDATE student_MKBUW 3 96
ADD student_GHTE F 5 49 4 85 65 99 7 1 6 37
ADD student_MF F 9 76 83 3 80 77 59 21 5 75
UPDATE student_BRKEM 8 32
UPDATE student_QV 6 54
UPDATE student_ATUKUK 7 60
QUERY student_XVAQ
UPDATE student_MNECASL 3 87
QUERY student_KUQLGVC
QUERY student_CCMREF
UPDATE student_MK 6 96
QUERY student_YDQLRW
QUERY student_IVFCTA
UPDATE student_EZYC 7 52
QUERY student_UZLNRIX
QUERY student_TLRLPY
QUERY student_IVQ
QUERY student_MKBUW
UPDATE student_OFJLP 6 17
QUERY student_MF
UPDATE student_MNECASL 2 44
UPDATE student_TLRLPY 0 90
QUERY student_OFJLP
QUERY student_MNECASL
QUERY student_HYE
UPDATE student_LP 1 66
UPDATE student_RZ 0 32
QUERY student_RZ
QUERY student_GMFFN
UPDATE student_LDHEKUL 3 5
UPDATE student_ATUKUK 0 53
QUERY student_OFJLP
UPDATE student_OW 8 60
UPDATE student_ABZGQE 2 68
QUERY student_HYE
UPDATE student_FOXZP 7 91
UPDATE student_MKBUW 0 83
QUERY student_MKBUW
QUERY student_FSMKW
UPDATE student_YHKVZ 0 82
UPDATE student_QJYCNAC 3 2
QUERY student_AVRL
UPDATE student_DOCDGAO 8 61
UPDATE student_SPOKPZE 1 58
QUERY student_RZ
QUERY student_SIIU
QUERY student_YDQLRW
QUERY student_DKY
UPDATE student_EZYC 6 74
ADD student_MNECASL M 5 35 3 0 27 47 16 29 55 33
UPDATE student_RNQK 6 51
UPDATE student_FTRN 4 100
QUERY student_IVQ
UPDATE student_FOXZP 2 54
UPDATE student_CCMREF 1 48
UPDATE student_GHZVA 1 10
QUERY student_MKBUW
UPDATE student_TLRLPY 6 43
UPDATE student_EGKU 4 82
UPDATE student_MF 3 41
QUERY student_MKBUW
UPDATE student_USD 0 11
QUERY student_MK
QUERY student_SPOKPZE
QUERY student_QV
QUERY student_ZBE
QUERY student_SPOKPZE
QUERY student_IVFCTA
UPDATE student_GF 3 70
QUERY student_KUQLGVC
UPDATE student_IVFCTA 6 57
QUERY student_AVRL
QUERY student_RZ
UPDATE student_PVDB 4 9
UPDATE student_TLRLPY 0 13
QUERY student_HYE
QUERY student_NVSN
QUERY student_DDE
UPDATE student_SPOKPZE 4 16
UPDATE student_XVAQ 4 75
QUERY student_CCMREF
QUERY student_MNECASL
QUERY student_IVQ
QUERY student_KUQLGVC
QUERY student_MF
QUERY student_DOCDGAO
UPDATE student_MK 2 39
UPDATE student_RNQK 0 78
FLUSH
QUERY student_IVQ
QUERY student_CCMREF
UPDATE student_EZYC 5 2
UPDATE student_EGKU 5 58
UPDATE student_AVRL 4 91
QUERY student_OFJLP
QUERY student_ATUKUK
UPDATE student_MEQ 3 17
UPDATE student_IVQ 8 15
UPDATE student_ABZGQE 1 8
UPDATE student_KV 2 95
UPDATE student_CCMREF 5 41
UPDATE student_BRKEM 1 94
UPDATE student_SIIU 6 59
QUERY student_KUQLGVC
UPDATE student_LP 7 49
QUERY student_GMFFN
UPDATE student_KUQLGVC 3 41
QUERY student_MF
QUERY student_CULLEVC
QUERY student_ZBE
QUERY student_FSMKW
UPDATE student_SIIU 0 1
QUERY student_OAZ
QUERY student_RNQK
UPDATE student_HYE 3 4
UPDATE student_RNQK 7 75
QUERY student_PVDB
UPDATE student_IVFCTA 3 24
QUERY student_MKBUW
UPDATE student_FSMKW 1 91
UPDATE student_OFJLP 0 95
UPDATE student_DOCDGAO 2 11
QUERY student_YDQLRW
UPDATE student_IVQ 1 3
UPDATE student_YHKVZ 5 70
UPDATE student_ZBE 7 47
QUERY student_ATUKUK
QUERY student_GMFFN
UPDATE student_NVSN 7 47
QUERY student_ZBE
UPDATE student_TLRLPY 2 35
UPDATE student_BRKEM 1 22
UPDATE student_PVDB 1 70
QUERY student_IVFCTA
UPDATE student_RKMMZYL 1 41
UPDATE student_YDQLRW 5 97
UPDATE student_AVRL 1 20
UPDATE student_YDQLRW 8 98
QUERY student_POL
UPDATE student_SDNS 0 32
UPDATE student_NVSN 0 80
UPDATE student_SIIU 0 8
UPDATE student_FTRN 0 71
QUERY student_LVIT
QUERY student_QV
UPDATE student_EZYC 8 0
UPDATE student_CULLEVC 7 32
QUERY student_SPOKPZE
UPDATE student_RZ 1 74
QUERY student_ATUKUK
UPDATE student_MKBUW 5 78
QUERY student_NVSN
QUERY student_CCMREF
UPDATE student_RZ 8 22
UPDATE student_SIIU 0 36
UPDATE student_MKBUW 7 48
UPDATE student_MNECASL 4 0
QUERY student_QV
QUERY student_EYMM
QUERY student_CULLEVC
UPDATE student_USD 2 1
QUERY student_QV
UPDATE student_IVQ 7 48
UPDATE student_EGKU 6 79
UPDATE student_UKJJK 3 39
UPDATE student_SPOKPZE 5 93
UPDATE student_GMFFN 7 11
QUERY student_NVSN
UPDATE student_PVDB 4 52
QUERY student_FOXZP
QUERY student_MNECASL
QUERY student_SPOKPZE
QUERY student_XVAQ
QUERY student_XVAQ
UPDATE student_CULLEVC 1 59
UPDATE student_MK 3 38
UPDATE student_TLRLPY 1 19
QUERY student_HYE
QUERY student_FOXZP
QUERY student_ATUKUK
ADD student_PVDB M 7 28 27 91 84 4 12 39 95 37
QUERY student_YDQLRW
ADD student_DOCDGAO M 9 96 44 97 92 84 44 6 42 13
UPDATE student_MNECASL 3 25
UPDATE student_EGKU 8 32
UPDATE student_NVSN 7 29
UPDATE student_IVFCTA 7 27
QUERY student_ATUKUK
UPDATE student_FTRN 1 19
UPDATE student_SPOKPZE 0 70
UPDATE student_FTRN 2 36
UPDATE student_HYE 2 27
UPDATE student_TLRLPY 1 68
UPDATE student_PVDB 8 71
QUERY student_RNQK
QUERY student_FWCXDST
UPDATE student_EGKU 1 19
QUERY student_KUQLGVC
UPDATE student_HYE 5 76
QUERY student_OFJLP
UPDATE student_YDQLRW 8 10
UPDATE student_RZ 3 7
QUERY student_GMFFN
UPDATE student_AVRL 4 91
QUERY student_ATUKUK
UPDATE student_ZUTV 7 6
UPDATE student_IVQ 3 100
QUERY student_IVFCTA
QUERY student_MKBUW
UPDATE student_EGKU 0 9
UPDATE student_CCMREF 8 52
UPDATE student_USD 6 86
ADD student_EZYC M 4 4 11 69 66 55 3 84 30 40
QUERY student_AVRL
UPDATE student_YHKVZ 1 32
UPDATE student_ABZGQE 2 75
QUERY student_ATUKUK
UPDATE student_GXPB 0 81
UPDATE student_YDQLRW 3 4
QUERY student_MF
QUERY student_OFJLP
UPDATE student_MNECASL 1 30
UPDATE student_RKCHZR 8 99
UPDATE student_KUQLGVC 1 94
QUERY student_DOCDGAO
UPDATE student_EIK 2 9
QUERY student_EZYC
UPDATE student_MKBUW 1 95
UPDATE student_AVRL 5 23
UPDATE student_KUQLGVC 3 17
QUERY student_PVDB
QUERY student_MKBUW
UPDATE student_DOCDGAO 3 96
UPDATE student_ABZGQE 0 91
QUERY student_NGCL
UPDATE student_BRKEM 6 55
UPDATE student_SIIU 4 24
UPDATE student_CCMREF 5 21
UPDATE student_OFJLP 8 90
QUERY student_ATUKUK
UPDATE student_PVDB 5 89
ADD student_RNQK F 20 76 76 94 86 93 18 92 5 30
QUERY student_MF
UPDATE student_QV 8 53
ADD student_EGKU M 6 66 19 24 70 65 32 10 14 77
UPDATE student_USD 4 21
UPDATE student_XLAD 2 90
UPDATE student_HYE 5 64
UPDATE student_CIIS 4 34
UPDATE student_HCWSZW 0 82
QUERY student_FTRN
QUERY student_MF
UPDATE student_IVFCTA 5 32
QUERY student_FSMKW
QUERY student_LP
UPDATE student_MF 4 76
QUERY student_BRKEM
UPDATE student_USD 6 16
QUERY student_ZBE
UPDATE student_JM 6 17
UPDATE student_BRKEM 1 31
UPDATE student_YHKVZ 2 7
UPDATE student_TLRLPY 1 57
UPDATE student_QV 4 48
QUERY student_GZAEJR
UPDATE student_DOCDGAO 8 65
QUERY student_PVDB
QUERY student_ZBE
UPDATE student_PVDB 1 86
QUERY student_YHKVZ
QUERY student_ZW
QUERY student_NVSN
ADD student_HSL M 8 90 41 80 92 90 32 33 55 4
UPDATE student_MK 5 51
FLUSH
UPDATE student_QV 3 17
FLUSH
PRINTLIST
END

270
Michelle/data/5.out Normal file
View File

@ -0,0 +1,270 @@
STUDENT student_QV NOW AT RANKING 7
[Error]Cannot add student now.
STUDENT student_XVAQ NOW AT RANKING 11
STUDENT student_NVSN NOW AT RANKING 3
[Error]Update failed.
[Error]Update failed.
STUDENT student_IVFCTA NOW AT RANKING 34
STUDENT student_IVFCTA NOW AT RANKING 34
STUDENT student_FTRN NOW AT RANKING 22
STUDENT student_IVFCTA NOW AT RANKING 34
STUDENT student_CCMREF NOW AT RANKING 5
STUDENT student_MKBUW NOW AT RANKING 17
STUDENT student_ABZGQE NOW AT RANKING 36
STUDENT student_FSMKW NOW AT RANKING 2
STUDENT student_MK NOW AT RANKING 15
STUDENT student_IVFCTA NOW AT RANKING 34
STUDENT student_ABZGQE NOW AT RANKING 36
[Error]Cannot add student now.
STUDENT student_RZ NOW AT RANKING 4
STUDENT student_MK NOW AT RANKING 15
[Error]Cannot add student now.
STUDENT student_SPOKPZE NOW AT RANKING 26
STUDENT student_MK NOW AT RANKING 15
STUDENT student_YHKVZ NOW AT RANKING 19
STUDENT student_MKBUW NOW AT RANKING 17
[Error]Update failed.
STUDENT student_FTRN NOW AT RANKING 22
STUDENT student_FTRN NOW AT RANKING 22
STUDENT student_QV NOW AT RANKING 7
[Error]Cannot add student now.
STUDENT student_MK NOW AT RANKING 15
STUDENT student_BRKEM NOW AT RANKING 27
STUDENT student_RNQK NOW AT RANKING 21
STUDENT student_EGKU NOW AT RANKING 24
STUDENT student_CCMREF NOW AT RANKING 5
STUDENT student_BRKEM NOW AT RANKING 27
[Error]Query failed.
[Error]Update failed.
STUDENT student_GMFFN NOW AT RANKING 31
STUDENT student_BRKEM NOW AT RANKING 27
STUDENT student_MKBUW NOW AT RANKING 17
[Error]Query failed.
STUDENT student_CCMREF NOW AT RANKING 5
STUDENT student_MK NOW AT RANKING 15
STUDENT student_YDQLRW NOW AT RANKING 23
STUDENT student_NVSN NOW AT RANKING 3
[Error]Query failed.
STUDENT student_FOXZP NOW AT RANKING 9
STUDENT student_MKBUW NOW AT RANKING 17
STUDENT student_MK NOW AT RANKING 15
[Error]Update failed.
[Error]Query failed.
[Error]Query failed.
[Error]Query failed.
[Error]Query failed.
STUDENT student_KUQLGVC NOW AT RANKING 8
STUDENT student_KUQLGVC NOW AT RANKING 8
STUDENT student_QV NOW AT RANKING 7
STUDENT student_AVRL NOW AT RANKING 10
STUDENT student_FSMKW NOW AT RANKING 2
[Error]Update failed.
STUDENT student_PVDB NOW AT RANKING 29
STUDENT student_MF NOW AT RANKING 35
STUDENT student_FSMKW NOW AT RANKING 2
STUDENT student_HYE NOW AT RANKING 30
STUDENT student_ATUKUK NOW AT RANKING 13
STUDENT student_LP NOW AT RANKING 14
STUDENT student_PVDB NOW AT RANKING 29
STUDENT student_AVRL NOW AT RANKING 10
STUDENT student_SIIU NOW AT RANKING 18
STUDENT student_IVFCTA NOW AT RANKING 34
STUDENT student_GMFFN NOW AT RANKING 31
STUDENT student_ATUKUK NOW AT RANKING 13
STUDENT student_AVRL NOW AT RANKING 10
[Error]Cannot add student now.
STUDENT student_FTRN NOW AT RANKING 22
[Error]Query failed.
[Error]Update failed.
STUDENT student_RZ NOW AT RANKING 4
STUDENT student_FOXZP NOW AT RANKING 9
[Error]Update failed.
STUDENT student_LP NOW AT RANKING 14
STUDENT student_FSMKW NOW AT RANKING 2
[Error]Cannot add student now.
STUDENT student_IVQ NOW AT RANKING 28
STUDENT student_SIIU NOW AT RANKING 18
STUDENT student_FTRN NOW AT RANKING 22
STUDENT student_FSMKW NOW AT RANKING 2
STUDENT student_IVQ NOW AT RANKING 28
STUDENT student_YHKVZ NOW AT RANKING 19
[Error]Cannot add student now.
[Error]Cannot add student now.
STUDENT student_XVAQ NOW AT RANKING 11
STUDENT student_KUQLGVC NOW AT RANKING 8
STUDENT student_CCMREF NOW AT RANKING 5
STUDENT student_YDQLRW NOW AT RANKING 23
STUDENT student_IVFCTA NOW AT RANKING 34
[Error]Query failed.
STUDENT student_TLRLPY NOW AT RANKING 12
STUDENT student_IVQ NOW AT RANKING 28
STUDENT student_MKBUW NOW AT RANKING 17
STUDENT student_MF NOW AT RANKING 35
STUDENT student_OFJLP NOW AT RANKING 1
STUDENT student_MNECASL NOW AT RANKING 33
STUDENT student_HYE NOW AT RANKING 30
STUDENT student_RZ NOW AT RANKING 4
STUDENT student_GMFFN NOW AT RANKING 31
[Error]Update failed.
STUDENT student_OFJLP NOW AT RANKING 1
[Error]Update failed.
STUDENT student_HYE NOW AT RANKING 30
STUDENT student_MKBUW NOW AT RANKING 17
STUDENT student_FSMKW NOW AT RANKING 2
[Error]Update failed.
STUDENT student_AVRL NOW AT RANKING 10
STUDENT student_RZ NOW AT RANKING 4
STUDENT student_SIIU NOW AT RANKING 18
STUDENT student_YDQLRW NOW AT RANKING 23
[Error]Query failed.
[Error]Cannot add student now.
STUDENT student_IVQ NOW AT RANKING 28
[Error]Update failed.
STUDENT student_MKBUW NOW AT RANKING 17
STUDENT student_MKBUW NOW AT RANKING 17
STUDENT student_MK NOW AT RANKING 15
STUDENT student_SPOKPZE NOW AT RANKING 26
STUDENT student_QV NOW AT RANKING 7
STUDENT student_ZBE NOW AT RANKING 25
STUDENT student_SPOKPZE NOW AT RANKING 26
STUDENT student_IVFCTA NOW AT RANKING 34
[Error]Update failed.
STUDENT student_KUQLGVC NOW AT RANKING 8
STUDENT student_AVRL NOW AT RANKING 10
STUDENT student_RZ NOW AT RANKING 4
STUDENT student_HYE NOW AT RANKING 30
STUDENT student_NVSN NOW AT RANKING 3
[Error]Query failed.
STUDENT student_CCMREF NOW AT RANKING 5
STUDENT student_MNECASL NOW AT RANKING 33
STUDENT student_IVQ NOW AT RANKING 28
STUDENT student_KUQLGVC NOW AT RANKING 8
STUDENT student_MF NOW AT RANKING 35
STUDENT student_DOCDGAO NOW AT RANKING 32
STUDENT student_IVQ NOW AT RANKING 14
STUDENT student_CCMREF NOW AT RANKING 25
STUDENT student_OFJLP NOW AT RANKING 1
STUDENT student_ATUKUK NOW AT RANKING 33
[Error]Update failed.
[Error]Update failed.
STUDENT student_KUQLGVC NOW AT RANKING 7
STUDENT student_GMFFN NOW AT RANKING 29
STUDENT student_MF NOW AT RANKING 35
STUDENT student_CULLEVC NOW AT RANKING 17
STUDENT student_ZBE NOW AT RANKING 23
STUDENT student_FSMKW NOW AT RANKING 3
[Error]Query failed.
STUDENT student_RNQK NOW AT RANKING 21
STUDENT student_PVDB NOW AT RANKING 30
STUDENT student_MKBUW NOW AT RANKING 6
STUDENT student_YDQLRW NOW AT RANKING 28
STUDENT student_ATUKUK NOW AT RANKING 33
STUDENT student_GMFFN NOW AT RANKING 29
STUDENT student_ZBE NOW AT RANKING 23
STUDENT student_IVFCTA NOW AT RANKING 34
[Error]Update failed.
[Error]Query failed.
[Error]Update failed.
[Error]Query failed.
STUDENT student_QV NOW AT RANKING 8
STUDENT student_SPOKPZE NOW AT RANKING 31
STUDENT student_ATUKUK NOW AT RANKING 33
STUDENT student_NVSN NOW AT RANKING 2
STUDENT student_CCMREF NOW AT RANKING 25
STUDENT student_QV NOW AT RANKING 8
[Error]Query failed.
STUDENT student_CULLEVC NOW AT RANKING 17
STUDENT student_QV NOW AT RANKING 8
[Error]Update failed.
STUDENT student_NVSN NOW AT RANKING 2
STUDENT student_FOXZP NOW AT RANKING 12
STUDENT student_MNECASL NOW AT RANKING 15
STUDENT student_SPOKPZE NOW AT RANKING 31
STUDENT student_XVAQ NOW AT RANKING 9
STUDENT student_XVAQ NOW AT RANKING 9
STUDENT student_HYE NOW AT RANKING 10
STUDENT student_FOXZP NOW AT RANKING 12
STUDENT student_ATUKUK NOW AT RANKING 33
[Error]Cannot add student now.
STUDENT student_YDQLRW NOW AT RANKING 28
[Error]Cannot add student now.
STUDENT student_ATUKUK NOW AT RANKING 33
STUDENT student_RNQK NOW AT RANKING 21
[Error]Query failed.
STUDENT student_KUQLGVC NOW AT RANKING 7
STUDENT student_OFJLP NOW AT RANKING 1
STUDENT student_GMFFN NOW AT RANKING 29
STUDENT student_ATUKUK NOW AT RANKING 33
[Error]Update failed.
STUDENT student_IVFCTA NOW AT RANKING 34
STUDENT student_MKBUW NOW AT RANKING 6
[Error]Cannot add student now.
STUDENT student_AVRL NOW AT RANKING 11
STUDENT student_ATUKUK NOW AT RANKING 33
[Error]Update failed.
STUDENT student_MF NOW AT RANKING 35
STUDENT student_OFJLP NOW AT RANKING 1
[Error]Update failed.
STUDENT student_DOCDGAO NOW AT RANKING 22
[Error]Update failed.
STUDENT student_EZYC NOW AT RANKING 24
STUDENT student_PVDB NOW AT RANKING 30
STUDENT student_MKBUW NOW AT RANKING 6
[Error]Query failed.
STUDENT student_ATUKUK NOW AT RANKING 33
[Error]Cannot add student now.
STUDENT student_MF NOW AT RANKING 35
[Error]Cannot add student now.
[Error]Update failed.
[Error]Update failed.
[Error]Update failed.
STUDENT student_FTRN NOW AT RANKING 13
STUDENT student_MF NOW AT RANKING 35
STUDENT student_FSMKW NOW AT RANKING 3
STUDENT student_LP NOW AT RANKING 16
STUDENT student_BRKEM NOW AT RANKING 32
STUDENT student_ZBE NOW AT RANKING 23
[Error]Update failed.
[Error]Query failed.
STUDENT student_PVDB NOW AT RANKING 30
STUDENT student_ZBE NOW AT RANKING 23
STUDENT student_YHKVZ NOW AT RANKING 18
[Error]Query failed.
STUDENT student_NVSN NOW AT RANKING 2
[Error]Cannot add student now.
1 student_OFJLP female 6 78
2 student_FSMKW male 14 71
3 student_MKBUW male 10 67
4 student_PVDB female 9 61
5 student_NVSN male 16 60
6 student_MK female 19 58
7 student_KUQLGVC female 19 57
8 student_AVRL female 11 56
9 student_FTRN female 9 55
10 student_XVAQ female 17 55
11 student_CULLEVC male 14 54
12 student_LP male 8 53
13 student_FOXZP female 2 53
14 student_RNQK female 11 51
15 student_RZ female 1 50
16 student_DOCDGAO female 11 49
17 student_QV female 15 49
18 student_SPOKPZE female 5 46
19 student_BRKEM male 8 45
20 student_IVQ female 15 44
21 student_HYE female 5 44
22 student_CCMREF female 11 44
23 student_YHKVZ female 20 43
24 student_TLRLPY female 11 43
25 student_GMFFN female 14 42
26 student_EGKU male 6 42
27 student_ABZGQE male 9 41
28 student_YDQLRW female 5 41
29 student_ZBE female 11 41
30 student_SIIU female 3 40
31 student_MF male 7 39
32 student_ATUKUK male 17 36
33 student_MNECASL female 5 35
34 student_IVFCTA female 3 33
35 student_EZYC female 7 30
36 student_USD female 5 30

1000
Michelle/data/6.in Normal file

File diff suppressed because it is too large Load Diff

542
Michelle/data/6.out Normal file
View File

@ -0,0 +1,542 @@
STUDENT student_XVAQ NOW AT RANKING 12
STUDENT student_AVRL NOW AT RANKING 11
STUDENT student_ZXUQX NOW AT RANKING 23
STUDENT student_MKBUW NOW AT RANKING 18
STUDENT student_PVDB NOW AT RANKING 33
STUDENT student_EGKU NOW AT RANKING 27
STUDENT student_RNQK NOW AT RANKING 24
STUDENT student_AVRL NOW AT RANKING 11
STUDENT student_GMFFN NOW AT RANKING 35
[Error]Cannot add student now.
STUDENT student_EZYC NOW AT RANKING 22
STUDENT student_MK NOW AT RANKING 16
[Error]Cannot add student now.
STUDENT student_LP NOW AT RANKING 15
STUDENT student_MKBUW NOW AT RANKING 18
STUDENT student_BRKEM NOW AT RANKING 31
STUDENT student_BRKEM NOW AT RANKING 31
[Error]Update failed.
STUDENT student_CULLEVC NOW AT RANKING 17
STUDENT student_CULLEVC NOW AT RANKING 17
STUDENT student_USD NOW AT RANKING 6
[Error]Cannot add student now.
STUDENT student_MK NOW AT RANKING 16
STUDENT student_CCMREF NOW AT RANKING 5
STUDENT student_MKBUW NOW AT RANKING 18
STUDENT student_XMUZZXV NOW AT RANKING 30
STUDENT student_MKBUW NOW AT RANKING 18
STUDENT student_BRKEM NOW AT RANKING 31
[Error]Query failed.
[Error]Update failed.
STUDENT student_RZ NOW AT RANKING 4
STUDENT student_LP NOW AT RANKING 15
STUDENT student_CCMREF NOW AT RANKING 5
[Error]Query failed.
STUDENT student_CCMREF NOW AT RANKING 5
STUDENT student_SIIU NOW AT RANKING 20
STUDENT student_DOCDGAO NOW AT RANKING 36
STUDENT student_FSMKW NOW AT RANKING 2
[Error]Query failed.
STUDENT student_CULLEVC NOW AT RANKING 17
STUDENT student_YHKVZ NOW AT RANKING 21
STUDENT student_RNQK NOW AT RANKING 24
[Error]Update failed.
[Error]Query failed.
[Error]Query failed.
[Error]Query failed.
[Error]Query failed.
STUDENT student_OFJLP NOW AT RANKING 1
STUDENT student_EGKU NOW AT RANKING 27
STUDENT student_DIFURV NOW AT RANKING 8
STUDENT student_MNECASL NOW AT RANKING 37
STUDENT student_FSMKW NOW AT RANKING 2
[Error]Update failed.
STUDENT student_ZBE NOW AT RANKING 28
STUDENT student_FOXZP NOW AT RANKING 10
STUDENT student_EGKU NOW AT RANKING 27
STUDENT student_DIFURV NOW AT RANKING 8
STUDENT student_QV NOW AT RANKING 7
STUDENT student_SPOKPZE NOW AT RANKING 29
STUDENT student_PVDB NOW AT RANKING 33
STUDENT student_USD NOW AT RANKING 6
STUDENT student_RNQK NOW AT RANKING 24
STUDENT student_IVFCTA NOW AT RANKING 38
STUDENT student_GMFFN NOW AT RANKING 35
STUDENT student_XVAQ NOW AT RANKING 12
STUDENT student_TLRLPY NOW AT RANKING 13
[Error]Cannot add student now.
STUDENT student_NVSN NOW AT RANKING 3
[Error]Query failed.
[Error]Update failed.
STUDENT student_ABZGQE NOW AT RANKING 40
STUDENT student_FOXZP NOW AT RANKING 10
[Error]Update failed.
STUDENT student_RNQK NOW AT RANKING 24
STUDENT student_MF NOW AT RANKING 39
[Error]Cannot add student now.
STUDENT student_IGWNTU NOW AT RANKING 19
STUDENT student_LP NOW AT RANKING 15
STUDENT student_FTRN NOW AT RANKING 25
STUDENT student_CULLEVC NOW AT RANKING 17
STUDENT student_EZYC NOW AT RANKING 22
STUDENT student_LP NOW AT RANKING 15
[Error]Cannot add student now.
[Error]Cannot add student now.
STUDENT student_IVFCTA NOW AT RANKING 38
STUDENT student_NVSN NOW AT RANKING 3
STUDENT student_MK NOW AT RANKING 16
STUDENT student_IVQ NOW AT RANKING 32
STUDENT student_ATUKUK NOW AT RANKING 14
[Error]Query failed.
STUDENT student_DIFURV NOW AT RANKING 8
STUDENT student_DOCDGAO NOW AT RANKING 36
STUDENT student_YHKVZ NOW AT RANKING 21
STUDENT student_CULLEVC NOW AT RANKING 17
STUDENT student_XMUZZXV NOW AT RANKING 30
STUDENT student_AVRL NOW AT RANKING 11
STUDENT student_TLRLPY NOW AT RANKING 13
STUDENT student_DOCDGAO NOW AT RANKING 36
STUDENT student_EZYC NOW AT RANKING 22
[Error]Update failed.
STUDENT student_MF NOW AT RANKING 39
[Error]Update failed.
STUDENT student_DIFURV NOW AT RANKING 8
STUDENT student_MK NOW AT RANKING 16
STUDENT student_KUQLGVC NOW AT RANKING 9
[Error]Update failed.
STUDENT student_XVAQ NOW AT RANKING 12
STUDENT student_RZ NOW AT RANKING 4
STUDENT student_SPOKPZE NOW AT RANKING 29
STUDENT student_ZBE NOW AT RANKING 28
[Error]Query failed.
[Error]Cannot add student now.
STUDENT student_PVDB NOW AT RANKING 33
[Error]Update failed.
STUDENT student_ZXUQX NOW AT RANKING 23
STUDENT student_MKBUW NOW AT RANKING 18
STUDENT student_MK NOW AT RANKING 16
STUDENT student_SPOKPZE NOW AT RANKING 29
STUDENT student_IVFCTA NOW AT RANKING 38
STUDENT student_RZ NOW AT RANKING 4
STUDENT student_LP NOW AT RANKING 15
STUDENT student_MNECASL NOW AT RANKING 37
[Error]Update failed.
STUDENT student_OFJLP NOW AT RANKING 1
STUDENT student_USD NOW AT RANKING 6
STUDENT student_DOCDGAO NOW AT RANKING 36
STUDENT student_AVRL NOW AT RANKING 11
STUDENT student_MF NOW AT RANKING 39
[Error]Query failed.
STUDENT student_LP NOW AT RANKING 15
STUDENT student_AVRL NOW AT RANKING 11
STUDENT student_RZ NOW AT RANKING 4
STUDENT student_XMUZZXV NOW AT RANKING 30
STUDENT student_EGKU NOW AT RANKING 27
STUDENT student_YDQLRW NOW AT RANKING 26
STUDENT student_IGWNTU NOW AT RANKING 15
STUDENT student_ZXUQX NOW AT RANKING 26
STUDENT student_FOXZP NOW AT RANKING 11
STUDENT student_XVAQ NOW AT RANKING 30
[Error]Update failed.
[Error]Update failed.
STUDENT student_FOXZP NOW AT RANKING 11
STUDENT student_IGWNTU NOW AT RANKING 15
STUDENT student_KUQLGVC NOW AT RANKING 10
STUDENT student_FOXZP NOW AT RANKING 11
STUDENT student_RZ NOW AT RANKING 12
STUDENT student_XMUZZXV NOW AT RANKING 13
[Error]Query failed.
STUDENT student_MK NOW AT RANKING 17
STUDENT student_YDQLRW NOW AT RANKING 29
STUDENT student_MK NOW AT RANKING 17
STUDENT student_YDQLRW NOW AT RANKING 29
STUDENT student_XVAQ NOW AT RANKING 30
STUDENT student_EZYC NOW AT RANKING 39
STUDENT student_DOCDGAO NOW AT RANKING 36
STUDENT student_HYE NOW AT RANKING 35
[Error]Update failed.
[Error]Query failed.
[Error]Update failed.
[Error]Query failed.
STUDENT student_USD NOW AT RANKING 20
STUDENT student_MK NOW AT RANKING 17
STUDENT student_HYE NOW AT RANKING 35
STUDENT student_FSMKW NOW AT RANKING 2
STUDENT student_SPOKPZE NOW AT RANKING 28
STUDENT student_DIFURV NOW AT RANKING 6
[Error]Query failed.
STUDENT student_FTRN NOW AT RANKING 24
STUDENT student_HYE NOW AT RANKING 35
[Error]Update failed.
STUDENT student_KUQLGVC NOW AT RANKING 10
STUDENT student_FOXZP NOW AT RANKING 11
STUDENT student_IVFCTA NOW AT RANKING 38
STUDENT student_SPOKPZE NOW AT RANKING 28
STUDENT student_HYE NOW AT RANKING 35
STUDENT student_HYE NOW AT RANKING 35
STUDENT student_MNECASL NOW AT RANKING 37
STUDENT student_KUQLGVC NOW AT RANKING 10
STUDENT student_MNECASL NOW AT RANKING 37
[Error]Cannot add student now.
STUDENT student_ZBE NOW AT RANKING 14
[Error]Cannot add student now.
STUDENT student_XVAQ NOW AT RANKING 30
STUDENT student_CCMREF NOW AT RANKING 19
[Error]Query failed.
STUDENT student_OFJLP NOW AT RANKING 7
STUDENT student_NVSN NOW AT RANKING 1
STUDENT student_ZBE NOW AT RANKING 14
STUDENT student_QV NOW AT RANKING 8
[Error]Update failed.
STUDENT student_AVRL NOW AT RANKING 4
STUDENT student_MK NOW AT RANKING 17
[Error]Cannot add student now.
STUDENT student_QV NOW AT RANKING 8
STUDENT student_XVAQ NOW AT RANKING 30
[Error]Update failed.
STUDENT student_CULLEVC NOW AT RANKING 18
STUDENT student_NVSN NOW AT RANKING 1
[Error]Update failed.
STUDENT student_GMFFN NOW AT RANKING 34
[Error]Update failed.
STUDENT student_DOCDGAO NOW AT RANKING 36
STUDENT student_GMFFN NOW AT RANKING 34
STUDENT student_YHKVZ NOW AT RANKING 3
[Error]Query failed.
STUDENT student_QV NOW AT RANKING 8
[Error]Cannot add student now.
STUDENT student_NVSN NOW AT RANKING 1
[Error]Cannot add student now.
[Error]Update failed.
[Error]Update failed.
[Error]Update failed.
STUDENT student_KUQLGVC NOW AT RANKING 10
STUDENT student_FOXZP NOW AT RANKING 11
STUDENT student_KUQLGVC NOW AT RANKING 10
STUDENT student_RNQK NOW AT RANKING 23
STUDENT student_ZXUQX NOW AT RANKING 26
STUDENT student_ABZGQE NOW AT RANKING 40
[Error]Update failed.
[Error]Query failed.
STUDENT student_IGWNTU NOW AT RANKING 15
STUDENT student_ABZGQE NOW AT RANKING 40
STUDENT student_SIIU NOW AT RANKING 22
[Error]Query failed.
STUDENT student_MF NOW AT RANKING 33
[Error]Cannot add student now.
STUDENT student_RZ NOW AT RANKING 4
STUDENT student_MF NOW AT RANKING 29
STUDENT student_ATUKUK NOW AT RANKING 2
STUDENT student_NVSN NOW AT RANKING 1
STUDENT student_FSMKW NOW AT RANKING 3
[Error]Update failed.
STUDENT student_LP NOW AT RANKING 26
STUDENT student_EGKU NOW AT RANKING 34
[Error]Cannot add student now.
STUDENT student_MF NOW AT RANKING 29
[Error]Update failed.
STUDENT student_XVAQ NOW AT RANKING 33
STUDENT student_MNECASL NOW AT RANKING 40
STUDENT student_CULLEVC NOW AT RANKING 17
[Error]Query failed.
[Error]Query failed.
STUDENT student_MNECASL NOW AT RANKING 40
STUDENT student_FOXZP NOW AT RANKING 14
STUDENT student_DIFURV NOW AT RANKING 8
STUDENT student_DIFURV NOW AT RANKING 8
STUDENT student_KUQLGVC NOW AT RANKING 24
[Error]Cannot add student now.
STUDENT student_GMFFN NOW AT RANKING 16
[Error]Cannot add student now.
STUDENT student_PVDB NOW AT RANKING 7
[Error]Cannot add student now.
[Error]Update failed.
STUDENT student_FSMKW NOW AT RANKING 3
[Error]Query failed.
STUDENT student_XVAQ NOW AT RANKING 33
STUDENT student_SIIU NOW AT RANKING 22
STUDENT student_CCMREF NOW AT RANKING 10
STUDENT student_ABZGQE NOW AT RANKING 30
STUDENT student_MK NOW AT RANKING 12
[Error]Update failed.
STUDENT student_ZXUQX NOW AT RANKING 38
STUDENT student_OFJLP NOW AT RANKING 9
STUDENT student_MK NOW AT RANKING 12
STUDENT student_QV NOW AT RANKING 6
STUDENT student_USD NOW AT RANKING 13
[Error]Cannot add student now.
STUDENT student_ABZGQE NOW AT RANKING 30
STUDENT student_IVFCTA NOW AT RANKING 39
STUDENT student_ATUKUK NOW AT RANKING 2
STUDENT student_SPOKPZE NOW AT RANKING 28
[Error]Cannot add student now.
STUDENT student_IVQ NOW AT RANKING 31
[Error]Update failed.
STUDENT student_MK NOW AT RANKING 12
STUDENT student_AVRL NOW AT RANKING 18
STUDENT student_KUQLGVC NOW AT RANKING 24
STUDENT student_IGWNTU NOW AT RANKING 23
[Error]Update failed.
STUDENT student_FSMKW NOW AT RANKING 3
STUDENT student_EZYC NOW AT RANKING 36
[Error]Query failed.
[Error]Update failed.
STUDENT student_BRKEM NOW AT RANKING 25
STUDENT student_YDQLRW NOW AT RANKING 32
STUDENT student_EGKU NOW AT RANKING 34
STUDENT student_NVSN NOW AT RANKING 1
[Error]Query failed.
STUDENT student_ZBE NOW AT RANKING 11
STUDENT student_EZYC NOW AT RANKING 36
[Error]Query failed.
STUDENT student_OFJLP NOW AT RANKING 9
STUDENT student_KUQLGVC NOW AT RANKING 24
STUDENT student_MNECASL NOW AT RANKING 40
STUDENT student_CULLEVC NOW AT RANKING 17
[Error]Cannot add student now.
STUDENT student_AVRL NOW AT RANKING 23
STUDENT student_GMFFN NOW AT RANKING 11
STUDENT student_TLRLPY NOW AT RANKING 26
STUDENT student_LP NOW AT RANKING 37
STUDENT student_FOXZP NOW AT RANKING 4
STUDENT student_IVFCTA NOW AT RANKING 40
STUDENT student_DOCDGAO NOW AT RANKING 33
STUDENT student_IVFCTA NOW AT RANKING 40
STUDENT student_DOCDGAO NOW AT RANKING 33
STUDENT student_YDQLRW NOW AT RANKING 32
STUDENT student_USD NOW AT RANKING 18
STUDENT student_FSMKW NOW AT RANKING 5
STUDENT student_HYE NOW AT RANKING 34
[Error]Update failed.
STUDENT student_MNECASL NOW AT RANKING 38
STUDENT student_MKBUW NOW AT RANKING 15
[Error]Query failed.
[Error]Update failed.
[Error]Cannot add student now.
[Error]Update failed.
[Error]Query failed.
[Error]Update failed.
[Error]Update failed.
[Error]Query failed.
STUDENT student_EZYC NOW AT RANKING 35
STUDENT student_FSMKW NOW AT RANKING 5
STUDENT student_EGKU NOW AT RANKING 36
STUDENT student_AVRL NOW AT RANKING 23
[Error]Update failed.
STUDENT student_BRKEM NOW AT RANKING 12
STUDENT student_DOCDGAO NOW AT RANKING 33
STUDENT student_USD NOW AT RANKING 18
STUDENT student_ATUKUK NOW AT RANKING 1
STUDENT student_HYE NOW AT RANKING 34
STUDENT student_IVFCTA NOW AT RANKING 40
STUDENT student_EGKU NOW AT RANKING 36
STUDENT student_SPOKPZE NOW AT RANKING 26
STUDENT student_ABZGQE NOW AT RANKING 30
[Error]Cannot add student now.
STUDENT student_ATUKUK NOW AT RANKING 1
STUDENT student_CULLEVC NOW AT RANKING 8
[Error]Query failed.
STUDENT student_AVRL NOW AT RANKING 22
STUDENT student_IVQ NOW AT RANKING 19
STUDENT student_YDQLRW NOW AT RANKING 33
[Error]Update failed.
[Error]Query failed.
[Error]Query failed.
STUDENT student_KUQLGVC NOW AT RANKING 31
[Error]Cannot add student now.
[Error]Query failed.
STUDENT student_TLRLPY NOW AT RANKING 20
STUDENT student_FTRN NOW AT RANKING 25
STUDENT student_PVDB NOW AT RANKING 14
STUDENT student_CULLEVC NOW AT RANKING 8
STUDENT student_CCMREF NOW AT RANKING 11
STUDENT student_AVRL NOW AT RANKING 22
STUDENT student_DOCDGAO NOW AT RANKING 32
STUDENT student_MK NOW AT RANKING 6
STUDENT student_RNQK NOW AT RANKING 24
STUDENT student_MF NOW AT RANKING 29
STUDENT student_HYE NOW AT RANKING 34
STUDENT student_IVFCTA NOW AT RANKING 40
STUDENT student_PVDB NOW AT RANKING 14
STUDENT student_DIFURV NOW AT RANKING 2
STUDENT student_IGWNTU NOW AT RANKING 12
STUDENT student_EZYC NOW AT RANKING 35
STUDENT student_MF NOW AT RANKING 29
[Error]Cannot add student now.
STUDENT student_IVQ NOW AT RANKING 19
STUDENT student_YHKVZ NOW AT RANKING 3
STUDENT student_SPOKPZE NOW AT RANKING 26
STUDENT student_FTRN NOW AT RANKING 25
STUDENT student_CCMREF NOW AT RANKING 11
STUDENT student_TLRLPY NOW AT RANKING 20
STUDENT student_DOCDGAO NOW AT RANKING 32
STUDENT student_FOXZP NOW AT RANKING 4
STUDENT student_XMUZZXV NOW AT RANKING 7
[Error]Query failed.
STUDENT student_ATUKUK NOW AT RANKING 1
STUDENT student_MKBUW NOW AT RANKING 21
STUDENT student_ZXUQX NOW AT RANKING 38
STUDENT student_XVAQ NOW AT RANKING 9
STUDENT student_SIIU NOW AT RANKING 27
STUDENT student_OFJLP NOW AT RANKING 28
STUDENT student_SIIU NOW AT RANKING 27
STUDENT student_LP NOW AT RANKING 37
STUDENT student_IGWNTU NOW AT RANKING 12
STUDENT student_QV NOW AT RANKING 23
STUDENT student_EGKU NOW AT RANKING 39
STUDENT student_NVSN NOW AT RANKING 16
[Error]Update failed.
STUDENT student_SPOKPZE NOW AT RANKING 26
STUDENT student_KUQLGVC NOW AT RANKING 31
STUDENT student_AVRL NOW AT RANKING 22
[Error]Update failed.
[Error]Query failed.
STUDENT student_MNECASL NOW AT RANKING 36
STUDENT student_HYE NOW AT RANKING 34
[Error]Query failed.
STUDENT student_SPOKPZE NOW AT RANKING 26
STUDENT student_GMFFN NOW AT RANKING 15
STUDENT student_IGWNTU NOW AT RANKING 12
STUDENT student_MK NOW AT RANKING 6
STUDENT student_KUQLGVC NOW AT RANKING 31
STUDENT student_MKBUW NOW AT RANKING 21
STUDENT student_XMUZZXV NOW AT RANKING 7
STUDENT student_BRKEM NOW AT RANKING 13
STUDENT student_DIFURV NOW AT RANKING 2
STUDENT student_DOCDGAO NOW AT RANKING 32
STUDENT student_PVDB NOW AT RANKING 14
STUDENT student_LP NOW AT RANKING 37
STUDENT student_EZYC NOW AT RANKING 35
STUDENT student_MKBUW NOW AT RANKING 21
STUDENT student_MF NOW AT RANKING 29
STUDENT student_GMFFN NOW AT RANKING 15
STUDENT student_YDQLRW NOW AT RANKING 33
STUDENT student_CULLEVC NOW AT RANKING 8
STUDENT student_PVDB NOW AT RANKING 14
STUDENT student_IGWNTU NOW AT RANKING 12
[Error]Query failed.
STUDENT student_IGWNTU NOW AT RANKING 12
[Error]Cannot add student now.
STUDENT student_YDQLRW NOW AT RANKING 33
STUDENT student_DOCDGAO NOW AT RANKING 32
STUDENT student_EZYC NOW AT RANKING 35
STUDENT student_GMFFN NOW AT RANKING 15
[Error]Cannot add student now.
STUDENT student_NVSN NOW AT RANKING 16
[Error]Query failed.
STUDENT student_SIIU NOW AT RANKING 27
STUDENT student_RZ NOW AT RANKING 10
[Error]Update failed.
STUDENT student_OFJLP NOW AT RANKING 28
[Error]Cannot add student now.
STUDENT student_YDQLRW NOW AT RANKING 33
[Error]Update failed.
STUDENT student_SIIU NOW AT RANKING 27
STUDENT student_LP NOW AT RANKING 37
STUDENT student_QV NOW AT RANKING 23
[Error]Update failed.
STUDENT student_PVDB NOW AT RANKING 14
STUDENT student_MNECASL NOW AT RANKING 36
STUDENT student_IGWNTU NOW AT RANKING 12
STUDENT student_LP NOW AT RANKING 37
[Error]Update failed.
STUDENT student_DOCDGAO NOW AT RANKING 32
[Error]Query failed.
STUDENT student_EGKU NOW AT RANKING 39
STUDENT student_YHKVZ NOW AT RANKING 3
STUDENT student_TLRLPY NOW AT RANKING 20
STUDENT student_OFJLP NOW AT RANKING 28
STUDENT student_MKBUW NOW AT RANKING 21
[Error]Update failed.
[Error]Query failed.
STUDENT student_YDQLRW NOW AT RANKING 33
STUDENT student_BRKEM NOW AT RANKING 13
STUDENT student_MNECASL NOW AT RANKING 36
STUDENT student_FSMKW NOW AT RANKING 5
[Error]Query failed.
STUDENT student_SPOKPZE NOW AT RANKING 26
STUDENT student_FOXZP NOW AT RANKING 4
STUDENT student_OFJLP NOW AT RANKING 28
STUDENT student_FOXZP NOW AT RANKING 4
STUDENT student_FTRN NOW AT RANKING 25
[Error]Update failed.
[Error]Query failed.
[Error]Update failed.
STUDENT student_FTRN NOW AT RANKING 25
STUDENT student_USD NOW AT RANKING 17
STUDENT student_IGWNTU NOW AT RANKING 12
STUDENT student_XMUZZXV NOW AT RANKING 7
STUDENT student_ZBE NOW AT RANKING 18
STUDENT student_USD NOW AT RANKING 17
STUDENT student_HYE NOW AT RANKING 34
STUDENT student_FSMKW NOW AT RANKING 5
STUDENT student_XVAQ NOW AT RANKING 9
STUDENT student_YHKVZ NOW AT RANKING 3
STUDENT student_LP NOW AT RANKING 37
STUDENT student_USD NOW AT RANKING 17
[Error]Query failed.
STUDENT student_MNECASL NOW AT RANKING 30
STUDENT student_XVAQ NOW AT RANKING 3
[Error]Query failed.
STUDENT student_MNECASL NOW AT RANKING 30
[Error]Update failed.
STUDENT student_ZXUQX NOW AT RANKING 40
[Error]Update failed.
[Error]Update failed.
STUDENT student_LP NOW AT RANKING 36
[Error]Query failed.
STUDENT student_TLRLPY NOW AT RANKING 29
STUDENT student_IVQ NOW AT RANKING 34
STUDENT student_IVQ NOW AT RANKING 34
STUDENT student_RNQK NOW AT RANKING 23
STUDENT student_YDQLRW NOW AT RANKING 32
STUDENT student_FTRN NOW AT RANKING 22
STUDENT student_QV NOW AT RANKING 18
STUDENT student_PVDB NOW AT RANKING 20
[Error]Cannot add student now.
STUDENT student_EZYC NOW AT RANKING 21
STUDENT student_MK NOW AT RANKING 5
STUDENT student_SIIU NOW AT RANKING 8
STUDENT student_NVSN NOW AT RANKING 27
STUDENT student_MK NOW AT RANKING 5
STUDENT student_XMUZZXV NOW AT RANKING 19
1 student_ATUKUK male 17 68
2 student_XVAQ female 17 61
3 student_MK female 19 60
4 student_XMUZZXV female 20 59
5 student_FOXZP female 2 58
6 student_SIIU female 3 57
7 student_YHKVZ female 20 56
8 student_CULLEVC male 14 56
9 student_IGWNTU male 13 55
10 student_KUQLGVC female 19 54
11 student_GMFFN female 14 54
12 student_ABZGQE male 9 53
13 student_BRKEM male 8 52
14 student_RNQK female 11 52
15 student_ZBE female 11 51
16 student_EZYC female 7 51
17 student_DOCDGAO female 11 51
18 student_CCMREF female 11 51
19 student_QV female 15 50
20 student_PVDB female 9 49
21 student_DIFURV female 17 49
22 student_NVSN male 16 49
23 student_FTRN female 9 48
24 student_AVRL female 11 47
25 student_FSMKW male 14 45
26 student_RZ female 1 45
27 student_EGKU male 6 45
28 student_MF male 7 44
29 student_TLRLPY female 11 44
30 student_MNECASL female 5 43
31 student_SPOKPZE female 5 43
32 student_YDQLRW female 5 42
33 student_IVQ female 15 38
34 student_MKBUW male 10 37
35 student_LP male 8 36
36 student_USD female 5 36
37 student_ZXUQX female 16 32
38 student_OFJLP female 6 31
39 student_IVFCTA female 3 30
40 student_HYE female 5 28

2000
Michelle/data/7.in Normal file

File diff suppressed because it is too large Load Diff

1103
Michelle/data/7.out Normal file

File diff suppressed because it is too large Load Diff

3000
Michelle/data/8.in Normal file

File diff suppressed because it is too large Load Diff

1667
Michelle/data/8.out Normal file

File diff suppressed because it is too large Load Diff

100000
Michelle/data/9.in Normal file

File diff suppressed because it is too large Load Diff

73669
Michelle/data/9.out Normal file

File diff suppressed because it is too large Load Diff