結果

問題 No.486 3 Straight Win(3連勝)
ユーザー Haijinn
提出日時 2017-07-28 22:36:48
言語 C90
(gcc 12.3.0)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 358 bytes
コンパイル時間 91 ms
コンパイル使用メモリ 21,248 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-26 04:31:16
合計ジャッジ時間 897 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 28
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:9:1: warning: implicit declaration of function ‘gets’; did you mean ‘fgets’? [-Wimplicit-function-declaration]
    9 | gets(s);
      | ^~~~
      | fgets
/usr/bin/ld: /tmp/ccW6JemX.o: in function `main':
main.c:(.text.startup+0x20): 警告: the `gets' function is dangerous and should not be used.

ソースコード

diff #

#include<stdio.h>
#include<string.h>


int main(){
char s[101];
int i;
int x=0;
gets(s);
for(i=0;i<strlen(s);i++){
	if(s[i]=='O'&&s[i+1]=='O'&&s[i+2]=='O'){
		
		printf("East\n");
		x++;
		break;
		
		
		
	}else if(s[i]=='X'&&s[i+1]=='X'&&s[i+2]=='X'){
		printf("West\n");
		x++;
		break;
		
		
	}
	
	
	
	
	
	
}
if(x==0){
	
	printf("NA\n");
	
}

	return 0;
}
0