結果

問題 No.805 UMG
ユーザー kbyskbys
提出日時 2020-03-30 00:09:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 195 ms / 2,000 ms
コード長 620 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 81,784 KB
実行使用メモリ 68,760 KB
最終ジャッジ日時 2024-11-18 13:59:34
合計ジャッジ時間 2,774 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
55,100 KB
testcase_01 AC 39 ms
55,036 KB
testcase_02 AC 40 ms
54,596 KB
testcase_03 AC 38 ms
53,804 KB
testcase_04 AC 37 ms
54,432 KB
testcase_05 AC 39 ms
53,832 KB
testcase_06 AC 38 ms
54,300 KB
testcase_07 AC 39 ms
53,756 KB
testcase_08 AC 40 ms
60,320 KB
testcase_09 AC 38 ms
54,544 KB
testcase_10 AC 39 ms
54,368 KB
testcase_11 AC 39 ms
54,404 KB
testcase_12 AC 38 ms
54,084 KB
testcase_13 AC 42 ms
59,076 KB
testcase_14 AC 38 ms
54,496 KB
testcase_15 AC 48 ms
62,828 KB
testcase_16 AC 46 ms
63,368 KB
testcase_17 AC 45 ms
63,668 KB
testcase_18 AC 49 ms
62,416 KB
testcase_19 AC 49 ms
62,676 KB
testcase_20 AC 48 ms
62,508 KB
testcase_21 AC 48 ms
62,692 KB
testcase_22 AC 46 ms
62,880 KB
testcase_23 AC 165 ms
67,688 KB
testcase_24 AC 168 ms
68,668 KB
testcase_25 AC 169 ms
68,632 KB
testcase_26 AC 195 ms
68,712 KB
testcase_27 AC 172 ms
68,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
N = int(input())
S = input()

U = deque([])
M = deque([])
G = deque([])

for i,s in enumerate(S):
    if s == "U":
        U.append(i)
    elif s == "M":
        M.append(i)
    else:
        G.append(i)

U,M,G = set(U),set(M),set(G)
ans = 0

flag = True
try:
    minU = min(U)
    maxM = max(M)
    maxG = max(G)
except ValueError:
    flag = False
    print(0)

step = 1
if flag:
    while True:
        if minU+step > maxM or minU+2*step > maxG:
            break
        for n in U:
            if n+step in M and n+2*step in G:
                ans += 1
        step += 1
    print(ans)
0