码迷,mamicode.com
首页 > 其他好文 > 详细

HDU 1029: Ignatius and the Princess IV

时间:2018-07-17 14:25:11      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:har   dde   n+1   fir   eve   ret   ica   can   描述   

5
1 3 2 3 3
11
1 1 1 1 1 5 5 5 5 5 5
7
1 1 1 1 1 1 1

3

5

1

技术分享图片
#include <stdio.h>
#include <stdlib.h>
int cmp(const void *a,const void *b){
    return *(int*)a-*(int*)b;//(从小到大)
}
int nums[1000000];
int main(){
    int n;
    while(scanf("%d",&n)!=EOF){
        for(int i=0;i<n;i++)scanf("%d",&nums[i]);
        qsort(nums,n,sizeof(int),cmp);
        printf("%d\n",nums[n/2]);
    }
    return 0;
}
View Code

 

HDU 1029: Ignatius and the Princess IV

标签:har   dde   n+1   fir   eve   ret   ica   can   描述   

原文地址:https://www.cnblogs.com/Rhythm-/p/9322665.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!