結果

問題 No.805 UMG
ユーザー 💕💖💞💕💖💞
提出日時 2019-05-07 21:58:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 165 ms / 2,000 ms
コード長 255 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 82,212 KB
実行使用メモリ 65,712 KB
最終ジャッジ日時 2024-11-18 13:47:31
合計ジャッジ時間 2,650 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
58,900 KB
testcase_01 AC 43 ms
59,740 KB
testcase_02 AC 39 ms
58,860 KB
testcase_03 AC 39 ms
59,064 KB
testcase_04 AC 33 ms
52,496 KB
testcase_05 AC 33 ms
52,356 KB
testcase_06 AC 34 ms
52,672 KB
testcase_07 AC 37 ms
58,508 KB
testcase_08 AC 41 ms
60,288 KB
testcase_09 AC 39 ms
59,412 KB
testcase_10 AC 35 ms
52,208 KB
testcase_11 AC 37 ms
59,168 KB
testcase_12 AC 33 ms
52,772 KB
testcase_13 AC 39 ms
59,456 KB
testcase_14 AC 33 ms
53,208 KB
testcase_15 AC 49 ms
63,332 KB
testcase_16 AC 46 ms
62,208 KB
testcase_17 AC 44 ms
62,220 KB
testcase_18 AC 46 ms
62,504 KB
testcase_19 AC 43 ms
63,188 KB
testcase_20 AC 49 ms
64,044 KB
testcase_21 AC 46 ms
62,936 KB
testcase_22 AC 45 ms
62,696 KB
testcase_23 AC 163 ms
65,196 KB
testcase_24 AC 152 ms
64,452 KB
testcase_25 AC 165 ms
65,304 KB
testcase_26 AC 158 ms
65,712 KB
testcase_27 AC 165 ms
65,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
strs = list(input())

count = 0
for i in range(N):
    for j in range(i+1, N):
        k = 2*j - i
        if k <= 0 or k >= N: continue
        if strs[i] == 'U' and strs[j] == 'M' and strs[k] == 'G':
            count += 1

print(count)
0