結果

問題 No.805 UMG
ユーザー 👑 rin204rin204
提出日時 2020-09-08 07:45:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 228 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 63,948 KB
最終ジャッジ日時 2024-11-18 14:06:40
合計ジャッジ時間 2,479 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
59,008 KB
testcase_01 AC 43 ms
59,056 KB
testcase_02 AC 38 ms
52,940 KB
testcase_03 AC 41 ms
58,196 KB
testcase_04 AC 38 ms
52,484 KB
testcase_05 AC 36 ms
52,016 KB
testcase_06 AC 36 ms
52,152 KB
testcase_07 AC 38 ms
59,212 KB
testcase_08 AC 41 ms
60,280 KB
testcase_09 AC 41 ms
58,516 KB
testcase_10 AC 36 ms
52,532 KB
testcase_11 AC 36 ms
52,624 KB
testcase_12 AC 36 ms
51,812 KB
testcase_13 AC 43 ms
59,192 KB
testcase_14 AC 36 ms
52,620 KB
testcase_15 AC 48 ms
61,112 KB
testcase_16 AC 46 ms
61,276 KB
testcase_17 AC 47 ms
61,932 KB
testcase_18 AC 48 ms
61,152 KB
testcase_19 AC 45 ms
61,064 KB
testcase_20 AC 48 ms
61,920 KB
testcase_21 AC 45 ms
61,756 KB
testcase_22 AC 47 ms
61,424 KB
testcase_23 AC 113 ms
63,036 KB
testcase_24 AC 102 ms
63,304 KB
testcase_25 AC 108 ms
63,948 KB
testcase_26 AC 99 ms
63,432 KB
testcase_27 AC 114 ms
63,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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