結果

問題 No.805 UMG
ユーザー titiatitia
提出日時 2019-03-22 21:27:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 73 ms / 2,000 ms
コード長 191 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 64,156 KB
最終ジャッジ日時 2024-11-18 13:13:15
合計ジャッジ時間 2,135 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,160 KB
testcase_01 AC 37 ms
58,156 KB
testcase_02 AC 37 ms
53,112 KB
testcase_03 AC 41 ms
58,936 KB
testcase_04 AC 33 ms
52,820 KB
testcase_05 AC 33 ms
52,224 KB
testcase_06 AC 34 ms
52,772 KB
testcase_07 AC 34 ms
52,948 KB
testcase_08 AC 33 ms
53,308 KB
testcase_09 AC 34 ms
53,476 KB
testcase_10 AC 32 ms
52,856 KB
testcase_11 AC 35 ms
53,288 KB
testcase_12 AC 34 ms
52,380 KB
testcase_13 AC 34 ms
52,752 KB
testcase_14 AC 32 ms
52,496 KB
testcase_15 AC 40 ms
60,908 KB
testcase_16 AC 40 ms
61,824 KB
testcase_17 AC 40 ms
59,844 KB
testcase_18 AC 40 ms
61,644 KB
testcase_19 AC 39 ms
60,488 KB
testcase_20 AC 41 ms
60,972 KB
testcase_21 AC 41 ms
60,564 KB
testcase_22 AC 41 ms
60,592 KB
testcase_23 AC 73 ms
63,388 KB
testcase_24 AC 69 ms
62,612 KB
testcase_25 AC 69 ms
64,156 KB
testcase_26 AC 69 ms
62,128 KB
testcase_27 AC 71 ms
62,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

print(ANS)
0