結果

問題 No.805 UMG
ユーザー phtmscgphtmscg
提出日時 2019-04-01 15:36:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 269 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 65,328 KB
最終ジャッジ日時 2024-11-18 13:38:15
合計ジャッジ時間 2,501 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,580 KB
testcase_01 AC 38 ms
52,732 KB
testcase_02 AC 38 ms
52,196 KB
testcase_03 AC 38 ms
52,476 KB
testcase_04 AC 38 ms
52,684 KB
testcase_05 AC 38 ms
54,024 KB
testcase_06 AC 37 ms
53,348 KB
testcase_07 AC 38 ms
53,872 KB
testcase_08 AC 38 ms
53,312 KB
testcase_09 AC 39 ms
53,692 KB
testcase_10 AC 39 ms
52,860 KB
testcase_11 AC 39 ms
51,940 KB
testcase_12 AC 38 ms
52,920 KB
testcase_13 AC 40 ms
52,072 KB
testcase_14 AC 38 ms
53,032 KB
testcase_15 AC 47 ms
61,680 KB
testcase_16 AC 47 ms
61,308 KB
testcase_17 AC 46 ms
60,500 KB
testcase_18 AC 47 ms
60,132 KB
testcase_19 AC 45 ms
59,472 KB
testcase_20 AC 47 ms
60,144 KB
testcase_21 AC 46 ms
61,356 KB
testcase_22 AC 46 ms
61,032 KB
testcase_23 AC 85 ms
63,800 KB
testcase_24 AC 85 ms
64,652 KB
testcase_25 AC 86 ms
64,460 KB
testcase_26 AC 84 ms
65,328 KB
testcase_27 AC 86 ms
65,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

c = S.count("U")
count = 0
i = 0
while c > 0:
    if S[i] == "U":
        for j in range(int((N-i-1)/2)):
            if S[i+j+1] == "M" and S[i+2*(j+1)]  == "G":
                count += 1
        c -= 1
    i += 1
    
print(count)
0