結果

問題 No.805 UMG
ユーザー toyuzukotoyuzuko
提出日時 2020-07-15 20:49:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 75 ms / 2,000 ms
コード長 216 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 66,152 KB
最終ジャッジ日時 2024-11-18 14:05:04
合計ジャッジ時間 2,127 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,412 KB
testcase_01 AC 41 ms
57,660 KB
testcase_02 AC 39 ms
52,684 KB
testcase_03 AC 39 ms
59,492 KB
testcase_04 AC 38 ms
53,080 KB
testcase_05 AC 33 ms
52,400 KB
testcase_06 AC 33 ms
52,524 KB
testcase_07 AC 33 ms
52,136 KB
testcase_08 AC 33 ms
52,748 KB
testcase_09 AC 34 ms
53,008 KB
testcase_10 AC 33 ms
52,924 KB
testcase_11 AC 33 ms
52,876 KB
testcase_12 AC 34 ms
52,072 KB
testcase_13 AC 32 ms
52,284 KB
testcase_14 AC 35 ms
52,792 KB
testcase_15 AC 39 ms
59,796 KB
testcase_16 AC 42 ms
61,016 KB
testcase_17 AC 39 ms
60,224 KB
testcase_18 AC 40 ms
61,452 KB
testcase_19 AC 38 ms
59,524 KB
testcase_20 AC 40 ms
60,120 KB
testcase_21 AC 42 ms
60,256 KB
testcase_22 AC 42 ms
61,288 KB
testcase_23 AC 75 ms
66,152 KB
testcase_24 AC 74 ms
62,336 KB
testcase_25 AC 70 ms
63,092 KB
testcase_26 AC 67 ms
63,516 KB
testcase_27 AC 67 ms
62,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

res = 0

for i in range(N):
    if S[i] == 'M':
        for j in range(1, min(i, N - i - 1) + 1):
            if S[i - j] == 'U' and S[i + j] == 'G':
                res += 1

print(res)
0