結果

問題 No.805 UMG
ユーザー convexineqconvexineq
提出日時 2021-04-06 08:16:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 98 ms / 2,000 ms
コード長 228 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 64,404 KB
最終ジャッジ日時 2024-11-18 14:10:25
合計ジャッジ時間 2,570 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,532 KB
testcase_01 AC 40 ms
58,736 KB
testcase_02 AC 37 ms
52,488 KB
testcase_03 AC 39 ms
53,152 KB
testcase_04 AC 38 ms
53,004 KB
testcase_05 AC 35 ms
53,272 KB
testcase_06 AC 38 ms
52,820 KB
testcase_07 AC 36 ms
53,416 KB
testcase_08 AC 39 ms
58,036 KB
testcase_09 AC 41 ms
53,556 KB
testcase_10 AC 38 ms
52,996 KB
testcase_11 AC 39 ms
52,400 KB
testcase_12 AC 38 ms
52,692 KB
testcase_13 AC 42 ms
58,300 KB
testcase_14 AC 38 ms
51,680 KB
testcase_15 AC 48 ms
60,724 KB
testcase_16 AC 47 ms
60,976 KB
testcase_17 AC 47 ms
60,772 KB
testcase_18 AC 49 ms
62,008 KB
testcase_19 AC 45 ms
61,632 KB
testcase_20 AC 47 ms
61,648 KB
testcase_21 AC 48 ms
60,168 KB
testcase_22 AC 47 ms
60,268 KB
testcase_23 AC 90 ms
61,868 KB
testcase_24 AC 98 ms
63,224 KB
testcase_25 AC 91 ms
64,340 KB
testcase_26 AC 89 ms
64,404 KB
testcase_27 AC 96 ms
63,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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