結果
問題 | No.570 3人兄弟(その1) |
ユーザー | Mcpu3 |
提出日時 | 2018-09-23 15:57:56 |
言語 | C (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 432 bytes |
コンパイル時間 | 362 ms |
コンパイル使用メモリ | 28,288 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-14 02:20:33 |
合計ジャッジ時間 | 689 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,948 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,944 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 1 ms
6,944 KB |
ソースコード
#include <stdio.h> #include <stdlib.h> typedef struct{ char c; int h; }structure; int q(const void *a,const void *b) { if(((structure*)b)->h>((structure*)a)->h)return 1; else return -1; } int main(void) { int i; structure d[3]={{'A'},{'B'},{'C'}}; for(i=0;i<3;++i)scanf("%d",&d[i].h); qsort(d,3,sizeof(structure),q); for(i=0;i<3;++i)printf("%c\n",d[i].c); return 0; }