結果

問題 No.805 UMG
ユーザー 双六双六
提出日時 2020-07-25 14:33:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 205 ms / 2,000 ms
コード長 472 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 67,712 KB
最終ジャッジ日時 2024-04-29 11:10:44
合計ジャッジ時間 3,430 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
59,776 KB
testcase_01 AC 55 ms
60,672 KB
testcase_02 AC 53 ms
59,008 KB
testcase_03 AC 54 ms
59,648 KB
testcase_04 AC 48 ms
53,376 KB
testcase_05 AC 48 ms
53,504 KB
testcase_06 AC 49 ms
53,248 KB
testcase_07 AC 55 ms
59,648 KB
testcase_08 AC 55 ms
59,904 KB
testcase_09 AC 56 ms
59,904 KB
testcase_10 AC 49 ms
53,376 KB
testcase_11 AC 52 ms
58,752 KB
testcase_12 AC 47 ms
52,992 KB
testcase_13 AC 59 ms
60,544 KB
testcase_14 AC 50 ms
53,248 KB
testcase_15 AC 67 ms
63,360 KB
testcase_16 AC 64 ms
63,488 KB
testcase_17 AC 64 ms
62,464 KB
testcase_18 AC 69 ms
63,360 KB
testcase_19 AC 63 ms
62,592 KB
testcase_20 AC 67 ms
63,232 KB
testcase_21 AC 64 ms
63,232 KB
testcase_22 AC 64 ms
63,232 KB
testcase_23 AC 191 ms
67,456 KB
testcase_24 AC 205 ms
67,712 KB
testcase_25 AC 193 ms
67,456 KB
testcase_26 AC 195 ms
67,456 KB
testcase_27 AC 199 ms
67,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# import sys; input = sys.stdin.buffer.readline
# sys.setrecursionlimit(10**7)
from collections import defaultdict
con = 10 ** 9 + 7; INF = float("inf")

def getlist():
	return list(map(int, input().split()))

#処理内容
def main():
	N = int(input())
	S = input()
	ans = 0
	for i in range(N):
		for j in range(i + 1, N):
			k = 2 * j - i
			if k < N:
				if S[i] == "U" and S[j] == "M" and S[k] == "G":
					ans += 1

	print(ans)





if __name__ == '__main__':
	main()
0