結果

問題 No.805 UMG
ユーザー nohakai3nohakai3
提出日時 2022-07-26 11:52:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 209 bytes
コンパイル時間 352 ms
コンパイル使用メモリ 82,116 KB
実行使用メモリ 64,688 KB
最終ジャッジ日時 2024-11-18 14:16:41
合計ジャッジ時間 3,073 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
58,704 KB
testcase_01 AC 41 ms
59,136 KB
testcase_02 AC 39 ms
58,328 KB
testcase_03 AC 40 ms
58,244 KB
testcase_04 AC 36 ms
52,188 KB
testcase_05 AC 34 ms
52,300 KB
testcase_06 AC 38 ms
52,548 KB
testcase_07 AC 40 ms
59,688 KB
testcase_08 AC 42 ms
60,432 KB
testcase_09 AC 40 ms
59,748 KB
testcase_10 AC 34 ms
52,324 KB
testcase_11 AC 40 ms
58,388 KB
testcase_12 AC 37 ms
52,772 KB
testcase_13 AC 42 ms
60,160 KB
testcase_14 AC 36 ms
51,888 KB
testcase_15 AC 48 ms
62,736 KB
testcase_16 AC 45 ms
61,368 KB
testcase_17 AC 47 ms
63,140 KB
testcase_18 AC 47 ms
61,260 KB
testcase_19 AC 44 ms
62,012 KB
testcase_20 AC 48 ms
62,964 KB
testcase_21 AC 48 ms
63,136 KB
testcase_22 AC 47 ms
60,692 KB
testcase_23 AC 131 ms
64,688 KB
testcase_24 AC 137 ms
63,620 KB
testcase_25 AC 137 ms
62,800 KB
testcase_26 AC 142 ms
64,380 KB
testcase_27 AC 137 ms
64,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
s=input()
ans=0
for i in range(n-1):
    for j in range(i+1,n):
        if (i+j)%2==1:
            continue
        if s[i]=="U" and s[(i+j)//2]=="M" and s[j]=="G":
            ans+=1
print(ans)
0