結果

問題 No.805 UMG
ユーザー taki_gtaki_g
提出日時 2019-03-23 11:55:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 222 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 64,268 KB
最終ジャッジ日時 2024-11-18 13:31:44
合計ジャッジ時間 2,385 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,364 KB
testcase_01 AC 38 ms
52,752 KB
testcase_02 AC 38 ms
51,628 KB
testcase_03 AC 39 ms
52,540 KB
testcase_04 AC 38 ms
52,780 KB
testcase_05 AC 39 ms
52,376 KB
testcase_06 AC 38 ms
52,616 KB
testcase_07 AC 38 ms
52,460 KB
testcase_08 AC 38 ms
52,724 KB
testcase_09 AC 39 ms
52,824 KB
testcase_10 AC 40 ms
52,908 KB
testcase_11 AC 38 ms
53,664 KB
testcase_12 AC 38 ms
52,672 KB
testcase_13 AC 38 ms
53,488 KB
testcase_14 AC 38 ms
52,972 KB
testcase_15 AC 46 ms
60,768 KB
testcase_16 AC 46 ms
59,732 KB
testcase_17 AC 46 ms
60,900 KB
testcase_18 AC 47 ms
60,668 KB
testcase_19 AC 45 ms
59,372 KB
testcase_20 AC 47 ms
61,104 KB
testcase_21 AC 45 ms
60,244 KB
testcase_22 AC 46 ms
60,252 KB
testcase_23 AC 74 ms
62,812 KB
testcase_24 AC 74 ms
64,124 KB
testcase_25 AC 78 ms
62,916 KB
testcase_26 AC 76 ms
64,268 KB
testcase_27 AC 75 ms
63,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

S = input()

ans = 0
for i in range(len(S)):
    if S[i] == 'U':
        for j in range(i,N,2):
            if S[j] == 'G':
                if S[(i+j)//2] == 'M':
                    ans += 1

print(ans)
0