結果

問題 No.571 3人兄弟(その2)
ユーザー subsnsubsn
提出日時 2023-06-19 15:04:00
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 289 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 28,032 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-27 03:26:57
合計ジャッジ時間 770 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 1 ms
6,944 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
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 AC 1 ms
6,944 KB
testcase_13 AC 1 ms
6,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c:1:1: warning: return type defaults to 'int' [-Wimplicit-int]
    1 | main(h1,w1,h2,w2,h3,w3,i)
      | ^~~~
main.c: In function 'main':
main.c:1:1: warning: type of 'h1' defaults to 'int' [-Wimplicit-int]
main.c:1:1: warning: type of 'w1' defaults to 'int' [-Wimplicit-int]
main.c:1:1: warning: type of 'h2' defaults to 'int' [-Wimplicit-int]
main.c:1:1: warning: type of 'w2' defaults to 'int' [-Wimplicit-int]
main.c:1:1: warning: type of 'h3' defaults to 'int' [-Wimplicit-int]
main.c:1:1: warning: type of 'w3' defaults to 'int' [-Wimplicit-int]
main.c:1:1: warning: type of 'i' defaults to 'int' [-Wimplicit-int]
main.c:3:9: warning: implicit declaration of function 'scanf' [-Wimplicit-function-declaration]
    3 |         scanf("%d%d\n%d%d\n%d%d",&h1,&w1,&h2,&w2,&h3,&w3);
      |         ^~~~~
main.c:1:1: note: include '<stdio.h>' or provide a declaration of 'scanf'
  +++ |+#include <stdio.h>
    1 | main(h1,w1,h2,w2,h3,w3,i)
main.c:3:9: warning: incompatible implicit declaration of built-in function 'scanf' [-Wbuiltin-declaration-mismatch]
    3 |         scanf("%d%d\n%d%d\n%d%d",&h1,&w1,&h2,&w2,&h3,&w3);
      |         ^~~~~
main.c:3:9: note: include '<stdio.h>' or provide a declaration of 'scanf'
main.c:9:25: warning: implicit declaration of function 'puts' [-Wimplicit-function-declaration]
    9 |                         puts("A");
      |                         ^~~~
main.c:9:25: note: include '<stdio.h>' or provide a declaration of 'puts'

ソースコード

diff #

main(h1,w1,h2,w2,h3,w3,i)
{
	scanf("%d%d\n%d%d\n%d%d",&h1,&w1,&h2,&w2,&h3,&w3);
	h1=h1*100-w1;
	h2=h2*100-w2;
	h3=h3*100-w3;
	for(i=3;i--;){
		if(h1>h2&&h1>h3){
			puts("A");
			h1=-1;
		}
		if(h2>h1&&h2>h3){
			puts("B");
			h2=-1;
		}
		if(h3>h1&&h3>h2){
			puts("C");
			h3=-1;
		}
	}
}
0