結果

問題 No.436 ccw
ユーザー rtomprtomp
提出日時 2016-11-28 19:08:50
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 609 bytes
コンパイル時間 827 ms
コンパイル使用メモリ 55,008 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-11-27 12:42:06
合計ジャッジ時間 4,734 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
10,496 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 1 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 TLE -
testcase_11 AC 1 ms
5,248 KB
testcase_12 AC 1 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 1 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 1 ms
5,248 KB
testcase_18 AC 1 ms
5,248 KB
testcase_19 AC 1 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 4 ms
5,248 KB
testcase_22 AC 3 ms
5,248 KB
testcase_23 AC 3 ms
5,248 KB
testcase_24 AC 3 ms
5,248 KB
testcase_25 AC 3 ms
8,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>

using namespace std;

static char _c = 'c';
static char _w = 'w';

void Slove()
{
	string S;
	cin >> S;

	int size = S.length();
	int calc = size / 2;

	int ans = 1;

	if (S[calc] == _c)
	{
		while (S[calc + calc / 2] == _c)
		{
			calc += calc / 2;
		}

		for (int i = calc; i < size; ++i)
		{
			if (S[i] == _w)
			{
				ans = size - i;
				break;
			}
		}
	}
	else
	{
		while (S[calc / 2] == _w)
		{
			calc /= 2;
		}

		for (int i = calc; i > 0; --i)
		{
			if (S[i] == _c)
			{
				ans = i;
				break;
			}
		}
	}

	cout << ans << endl;
}


int main()
{
	Slove();
}
0