結果

問題 No.805 UMG
ユーザー ohreitetsuohreitetsu
提出日時 2019-03-22 22:03:24
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 647 bytes
コンパイル時間 624 ms
コンパイル使用メモリ 66,280 KB
実行使用メモリ 13,640 KB
最終ジャッジ日時 2024-11-18 13:24:32
合計ジャッジ時間 16,677 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
13,636 KB
testcase_01 AC 3 ms
10,020 KB
testcase_02 AC 1 ms
10,148 KB
testcase_03 AC 2 ms
10,144 KB
testcase_04 AC 2 ms
13,632 KB
testcase_05 AC 2 ms
10,144 KB
testcase_06 AC 2 ms
13,636 KB
testcase_07 AC 1 ms
10,144 KB
testcase_08 AC 2 ms
13,640 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 2 ms
6,816 KB
testcase_13 AC 2 ms
6,820 KB
testcase_14 AC 2 ms
6,816 KB
testcase_15 AC 32 ms
6,816 KB
testcase_16 AC 26 ms
6,816 KB
testcase_17 AC 16 ms
6,816 KB
testcase_18 AC 43 ms
6,816 KB
testcase_19 AC 11 ms
6,820 KB
testcase_20 AC 42 ms
6,816 KB
testcase_21 AC 20 ms
6,816 KB
testcase_22 AC 26 ms
6,816 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
using namespace std;
int main(int argc, char* argv[])
{
	int N;
	cin>>N;
	string S;
	cin>>S;
	int i,j,k,num=0;
	int Unum=0,Mnum=0,Gnum=0;
	for (i=0;i<N;i++){
		switch(S[i]){
			case 'U':
				Unum=1;
				break;
			case 'M':
				Mnum=1;
				break;
			case 'G':
				Gnum=1;
				break;
		}
		if (Unum+Mnum+Gnum==3){
			break;
		}
	}
	if (Unum+Mnum+Gnum<3){
		cout<<0<<endl;
		return 0;
	}
	for (i=1;i<=N-2;i++){
		for (j=i+1;j<=N-1;j++){
			for (k=j+1;k<=N;k++){
				if (2*j==i+k){
					if (S[i-1]=='U' &&S[j-1]=='M' &&S[k-1]=='G'){
						num++;
					}
					break;
				}
			}
		}
	}
	cout<<num<<endl;
	return 0;
}
0