結果

問題 No.805 UMG
ユーザー Meso MesoMeso Meso
提出日時 2024-06-16 15:02:44
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 300 bytes
コンパイル時間 406 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 75,104 KB
最終ジャッジ日時 2024-06-16 15:02:51
合計ジャッジ時間 6,756 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
60,040 KB
testcase_01 AC 44 ms
58,764 KB
testcase_02 AC 39 ms
53,348 KB
testcase_03 AC 39 ms
52,068 KB
testcase_04 AC 39 ms
52,720 KB
testcase_05 AC 53 ms
52,608 KB
testcase_06 AC 39 ms
53,364 KB
testcase_07 AC 44 ms
59,572 KB
testcase_08 AC 48 ms
60,728 KB
testcase_09 AC 45 ms
59,280 KB
testcase_10 AC 41 ms
53,076 KB
testcase_11 AC 45 ms
60,332 KB
testcase_12 AC 39 ms
52,440 KB
testcase_13 AC 49 ms
62,676 KB
testcase_14 AC 39 ms
52,848 KB
testcase_15 AC 123 ms
66,444 KB
testcase_16 AC 111 ms
65,704 KB
testcase_17 AC 82 ms
64,608 KB
testcase_18 AC 163 ms
67,024 KB
testcase_19 AC 73 ms
63,768 KB
testcase_20 AC 174 ms
65,020 KB
testcase_21 AC 97 ms
64,368 KB
testcase_22 AC 113 ms
66,352 KB
testcase_23 TLE -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = input()

cnt = 0
for i in range(n):
    if s[i] == "U":
        for j in range(i, n):
            if s[j] == "M":
                for k in range(j, n):
                    if s[k] == "G":
                        if j - i == k - j:
                            cnt += 1

print(cnt)
0