結果

問題 No.436 ccw
ユーザー checkcheck12ch1checkcheck12ch1
提出日時 2016-11-10 17:00:41
言語 C90
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 377 bytes
コンパイル時間 96 ms
コンパイル使用メモリ 20,736 KB
実行使用メモリ 15,184 KB
最終ジャッジ日時 2024-11-25 07:15:20
合計ジャッジ時間 48,931 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 TLE -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 1 ms
8,224 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 WA -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 WA -
testcase_25 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:11:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   11 |         scanf("%s",s);
      |         ^~~~~~~~~~~~~

ソースコード

diff #

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

int main(void) {
	int c = 0;
	int w = 0;
	int i;
	int j;
	int l;
	char s[100001];
	scanf("%s",s);
	l = strlen(s);
	j = l / 2;
	while (s[j] == 'c') {
		j = j / 2;
	}
	for (i = j;i < l;i++) {
		if(s[i] == 'w')  {
			c = i;
			w = l - c;
			break;
		}
	}
	if (c-1 > w) {
		printf("%d\n",w);
	}
	else {
		printf("%d\n",c-1);
	}
	return 0;
}
0