結果
問題 | No.571 3人兄弟(その2) |
ユーザー | funakoshi |
提出日時 | 2019-09-03 15:34:59 |
言語 | C (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 1,062 bytes |
コンパイル時間 | 923 ms |
コンパイル使用メモリ | 30,336 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-06 12:32:24 |
合計ジャッジ時間 | 876 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,944 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,940 KB |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | AC | 1 ms
6,944 KB |
testcase_09 | AC | 1 ms
6,944 KB |
testcase_10 | AC | 1 ms
6,940 KB |
testcase_11 | AC | 1 ms
6,944 KB |
testcase_12 | AC | 1 ms
6,940 KB |
testcase_13 | AC | 1 ms
6,940 KB |
ソースコード
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <stdbool.h> #include <math.h> void swap(char*,int*,int*,int,int); int main(void) { int sintyou[3]={0}; int taijyuu[3]={0}; char name[4]={'A','B','C'}; for(int i=0;i<3;i++) { scanf("%d %d",&sintyou[i],&taijyuu[i]); } for(int i=0;i<2;i++) { for(int j=i+1;j<3;j++) { if(sintyou[i]<sintyou[j]) { swap(name,sintyou,taijyuu,i,j); } else if(sintyou[i]==sintyou[j]) { if(taijyuu[i]>taijyuu[j]) { swap(name,sintyou,taijyuu,i,j); } } } } for(int i=0;i<3;i++) { printf("%c\n",name[i]); } } void swap(char *name,int *sintyou,int *taijyuu,int i,int j) { char chr=name[i]; name[i]=name[j]; name[j]=chr; int val = sintyou[i]; sintyou[i]=sintyou[j]; sintyou[j]=val; int valu = taijyuu[i]; taijyuu[i]=taijyuu[j]; taijyuu[j]=valu; }