4339: 比正整数大的数
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:12
Solved:9
Description
建立一个单链表,输入一组正整数,确定在序列中比正整数x大的数有几个。
Input
第一行:输入一组正整数
第二行:输入x的值。
Output
第一行,输出比x大的元素。
第二行,输出个数。
Sample Input Copy
2 3 4 5 6
4
Sample Output Copy
5 6
2