結果

問題 No.88 次はどっちだ
ユーザー a2011404a2011404
提出日時 2017-03-17 09:37:32
言語 C90
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 289 bytes
コンパイル時間 499 ms
コンパイル使用メモリ 21,120 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-04 13:40:19
合計ジャッジ時間 1,044 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 WA -
testcase_04 WA -
testcase_05 AC 1 ms
5,376 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:8:17: warning: format ‘%s’ expects argument of type ‘char *’, but argument 2 has type ‘char (*)[7]’ [-Wformat=]
    8 |         scanf("%s",&c);
      |                ~^  ~~
      |                 |  |
      |                 |  char (*)[7]
      |                 char *
main.c:11:33: warning: format ‘%s’ expects argument of type ‘char *’, but argument 2 has type ‘char (*)[9]’ [-Wformat=]
   11 |                         scanf("%s",&b);
      |                                ~^  ~~
      |                                 |  |
      |                                 |  char (*)[9]
      |                                 char *
main.c:8:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    8 |         scanf("%s",&c);
      |         ^~~~~~~~~~~~~~
main.c:11:25: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   11 |                         scanf("%s",&b);
      |                         ^~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>


int main(void){
	int 	i,j,w=0;
	char	c[7],b[9];

	scanf("%s",&c);

	for(i=0;i<8;i++){
			scanf("%s",&b);
		for(j=0;j<8;j++){
			if(b[j]=='w') w++;
		}

	}

	if(w%2==0)	printf(c[0] == 'y' ? "yukiko" : "oda");
	else		printf(c[0] == 'y' ? "oda" : "yukiko");

	return 0;
}
0