結果

問題 No.805 UMG
ユーザー brthyyjpbrthyyjp
提出日時 2020-05-19 08:30:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 272 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 82,896 KB
実行使用メモリ 65,216 KB
最終ジャッジ日時 2024-11-18 14:01:32
合計ジャッジ時間 2,673 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
58,660 KB
testcase_01 AC 39 ms
60,116 KB
testcase_02 AC 39 ms
58,416 KB
testcase_03 AC 39 ms
58,712 KB
testcase_04 AC 36 ms
52,388 KB
testcase_05 AC 35 ms
52,856 KB
testcase_06 AC 36 ms
52,212 KB
testcase_07 AC 40 ms
59,428 KB
testcase_08 AC 42 ms
59,912 KB
testcase_09 AC 40 ms
59,752 KB
testcase_10 AC 35 ms
52,736 KB
testcase_11 AC 40 ms
57,984 KB
testcase_12 AC 36 ms
53,772 KB
testcase_13 AC 41 ms
60,440 KB
testcase_14 AC 35 ms
52,256 KB
testcase_15 AC 47 ms
61,756 KB
testcase_16 AC 47 ms
62,216 KB
testcase_17 AC 46 ms
63,096 KB
testcase_18 AC 46 ms
61,948 KB
testcase_19 AC 43 ms
62,084 KB
testcase_20 AC 49 ms
62,528 KB
testcase_21 AC 48 ms
62,188 KB
testcase_22 AC 46 ms
62,660 KB
testcase_23 AC 121 ms
64,304 KB
testcase_24 AC 133 ms
63,968 KB
testcase_25 AC 138 ms
63,772 KB
testcase_26 AC 130 ms
65,216 KB
testcase_27 AC 125 ms
65,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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