結果

問題 No.564 背の順
ユーザー gunmakengunmaken
提出日時 2017-11-03 13:06:39
言語 C
(gcc 12.3.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 623 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 29,696 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-02 04:40:05
合計ジャッジ時間 783 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 WA -
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
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) % 10 == 1) {
        printf("%dst\n",i+1);
    }else if ((i+1) % 10 == 2) {
        printf("%dnd\n",i+1);
    }else if ((i+1) % 10 == 3) {
        printf("%drd\n",i+1);
    }else{
        printf("%dth\n",i+1);
    }
    return 0;
}
0