結果

問題 No.564 背の順
ユーザー gunmakengunmaken
提出日時 2017-11-03 12:58:10
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 587 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 29,440 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-02 04:39:41
合計ジャッジ時間 887 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 0 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 WA -
testcase_04 AC 0 ms
5,376 KB
testcase_05 WA -
testcase_06 AC 1 ms
5,376 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 1 ms
5,376 KB
testcase_10 WA -
testcase_11 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdlib.h>
#include <string.h>
#include <stdio.h>

int compare(const void *a,const void *b){
    return -1 * (*(int*)a - *(int*)b);
}

int main(void)
{
    int H,N;
    scanf("%d%d",&H,&N);
    int a[N-1],i;
    for (i = 0; i < N-1; i++) {
        scanf("%d",&a[i]);
    }
    i = 0;
    qsort(a, N - 1, sizeof(int), compare);
    while (H < a[i]) {
        i++;
    }
    if (i+1 == 1) {
        printf("1st\n");
    }else if (i+1 == 2) {
        printf("2nd\n");
    }else if (i+1 == 3) {
        printf("3rd\n");
    }else{
        printf("%dth\n",i+1);
    }
    return 0;
}
0