結果
問題 | No.570 3人兄弟(その1) |
ユーザー | Haijinn |
提出日時 | 2018-01-25 17:42:58 |
言語 | C90 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 499 bytes |
コンパイル時間 | 125 ms |
コンパイル使用メモリ | 20,992 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-08 01:43:50 |
合計ジャッジ時間 | 676 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 0 ms
6,940 KB |
testcase_02 | AC | 0 ms
6,940 KB |
testcase_03 | AC | 0 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,944 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 0 ms
6,944 KB |
コンパイルメッセージ
main.c: In function ‘main’: main.c:8:1: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 8 | scanf("%d",&a[i]); | ^~~~~~~~~~~~~~~~~
ソースコード
#include <stdio.h> int main(void){ int a[3]; int b[3]; int i,j; int temp; for(i=0;i<3;i++){ scanf("%d",&a[i]); b[i]=a[i]; } for(i=0;i<3;i++){ for(j=2;j>i;j--){ if(a[j]>a[j-1]){ temp=a[j]; a[j]=a[j-1]; a[j-1]=temp; } } } for(i=0;i<3;i++){ for(j=0;j<3;j++){ if(a[i]==b[j]){ switch(j){ case 0: printf("A\n"); break; case 1: printf("B\n"); break; case 2: printf("C\n"); break; } } } } return 0; }