結果

問題 No.805 UMG
ユーザー pasoconhoshiipasoconhoshii
提出日時 2019-03-23 09:01:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 325 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 65,372 KB
最終ジャッジ日時 2024-11-18 13:30:35
合計ジャッジ時間 2,622 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
58,756 KB
testcase_01 AC 39 ms
60,072 KB
testcase_02 AC 35 ms
53,360 KB
testcase_03 AC 37 ms
58,392 KB
testcase_04 AC 38 ms
52,836 KB
testcase_05 AC 35 ms
53,036 KB
testcase_06 AC 34 ms
52,324 KB
testcase_07 AC 38 ms
58,132 KB
testcase_08 AC 40 ms
58,784 KB
testcase_09 AC 40 ms
59,132 KB
testcase_10 AC 35 ms
52,704 KB
testcase_11 AC 35 ms
52,280 KB
testcase_12 AC 36 ms
52,532 KB
testcase_13 AC 40 ms
60,336 KB
testcase_14 AC 35 ms
53,088 KB
testcase_15 AC 47 ms
62,948 KB
testcase_16 AC 47 ms
63,536 KB
testcase_17 AC 43 ms
62,624 KB
testcase_18 AC 46 ms
64,272 KB
testcase_19 AC 43 ms
61,624 KB
testcase_20 AC 47 ms
63,040 KB
testcase_21 AC 45 ms
62,744 KB
testcase_22 AC 43 ms
61,872 KB
testcase_23 AC 129 ms
65,108 KB
testcase_24 AC 136 ms
65,200 KB
testcase_25 AC 134 ms
64,456 KB
testcase_26 AC 140 ms
65,372 KB
testcase_27 AC 138 ms
65,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


ans = 0
for stride in range(1, N//2+1):
    for k in range(0+stride, N-stride+1):
        i = k - stride
        j = k + stride

        if j >= N:
            continue
        
        if S[i] == "U" and \
           S[k] == "M" and \
           S[j] == "G":
               ans += 1
print(ans)
0