1709: 【一维数组】最大数

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:34 Solved:17

Description

    上机练习5.1.3     输入N个整数,找出最大数所在位置,并将它与第一个数对调位置。


Input

    第一行,整数N,1≤N≤104
    第二行,N个不超过104的整数。
 

Output

    第一行,最大数的位置,如果有多个,输出最前面的位置;
    第二行,N个整数,最大数与第一个数对调后按顺序输出,中间用空格分隔,行尾不能有空格。
 

Sample Input Copy

10
1 2 3 4 5 10 9 8 7 6

Sample Output Copy

6
10 2 3 4 5 1 9 8 7 6