結果

問題 No.805 UMG
ユーザー NagisaNagisa
提出日時 2019-03-22 22:50:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 188 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,648 KB
実行使用メモリ 63,816 KB
最終ジャッジ日時 2024-11-18 13:28:50
合計ジャッジ時間 2,409 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
58,248 KB
testcase_01 AC 40 ms
59,324 KB
testcase_02 AC 36 ms
51,876 KB
testcase_03 AC 37 ms
57,840 KB
testcase_04 AC 33 ms
52,000 KB
testcase_05 AC 34 ms
52,168 KB
testcase_06 AC 33 ms
52,004 KB
testcase_07 AC 37 ms
59,024 KB
testcase_08 AC 37 ms
59,372 KB
testcase_09 AC 37 ms
58,792 KB
testcase_10 AC 33 ms
52,840 KB
testcase_11 AC 35 ms
53,440 KB
testcase_12 AC 34 ms
52,516 KB
testcase_13 AC 39 ms
59,688 KB
testcase_14 AC 34 ms
52,944 KB
testcase_15 AC 44 ms
62,228 KB
testcase_16 AC 41 ms
60,780 KB
testcase_17 AC 40 ms
60,652 KB
testcase_18 AC 41 ms
61,296 KB
testcase_19 AC 40 ms
61,560 KB
testcase_20 AC 44 ms
61,796 KB
testcase_21 AC 43 ms
60,800 KB
testcase_22 AC 43 ms
61,080 KB
testcase_23 AC 117 ms
62,820 KB
testcase_24 AC 124 ms
63,780 KB
testcase_25 AC 115 ms
63,076 KB
testcase_26 AC 120 ms
63,816 KB
testcase_27 AC 117 ms
63,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = input()

ans = 0
for k in range(1,1+(N-1)//2):
    for l in range(N-2*k):
        if S[l] == "U" and S[l+k] == "M" and S[l+2*k] == "G":
            ans += 1
print(ans)
0