結果

問題 No.436 ccw
ユーザー ichiruisyu
提出日時 2016-11-02 15:55:38
言語 C90
(gcc 12.3.0)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 316 bytes
コンパイル時間 109 ms
コンパイル使用メモリ 20,864 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-25 01:29:59
合計ジャッジ時間 863 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 24
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:10:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   10 |         scanf("%s", S);
      |         ^~~~~~~~~~~~~~

ソースコード

diff #

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


int main()
{
	int i, c_count, w_count;
	char S[100003];
	
	scanf("%s", S);
	for(i=0; ;i++){
		if(S[i] == 'w'){
			c_count = i;
			break;
		}
	}
	w_count = strlen(S) - c_count;
	
	if(c_count > w_count+1)
		printf("%d",w_count);
	else
		printf("%d",c_count-1);
		
	return 0;
}
0