結果

問題 No.805 UMG
ユーザー GrayCoderGrayCoder
提出日時 2019-03-22 22:27:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 510 bytes
コンパイル時間 424 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 68,512 KB
最終ジャッジ日時 2024-11-18 13:27:26
合計ジャッジ時間 2,597 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,352 KB
testcase_01 AC 43 ms
55,444 KB
testcase_02 AC 42 ms
54,316 KB
testcase_03 AC 42 ms
55,120 KB
testcase_04 AC 42 ms
54,292 KB
testcase_05 AC 42 ms
53,692 KB
testcase_06 AC 41 ms
54,252 KB
testcase_07 AC 41 ms
53,812 KB
testcase_08 AC 46 ms
54,088 KB
testcase_09 AC 42 ms
54,524 KB
testcase_10 AC 41 ms
54,480 KB
testcase_11 AC 41 ms
53,932 KB
testcase_12 AC 41 ms
53,840 KB
testcase_13 AC 41 ms
54,084 KB
testcase_14 AC 41 ms
53,852 KB
testcase_15 AC 49 ms
63,748 KB
testcase_16 AC 49 ms
62,128 KB
testcase_17 AC 50 ms
63,072 KB
testcase_18 AC 50 ms
63,096 KB
testcase_19 AC 47 ms
61,500 KB
testcase_20 AC 50 ms
62,900 KB
testcase_21 AC 49 ms
62,128 KB
testcase_22 AC 50 ms
62,576 KB
testcase_23 AC 83 ms
68,512 KB
testcase_24 AC 82 ms
68,136 KB
testcase_25 AC 85 ms
67,496 KB
testcase_26 AC 83 ms
67,676 KB
testcase_27 AC 85 ms
68,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
from sys import stdin

def main():
    N = int(input())
    S = input()

    txt = defaultdict(list)
    for i, s in enumerate(S):
        txt[s].append(i)

    ans = 0
    for i in txt['U']:
        for n in range(1, 2500):
            m = i + n
            g = m + n
            if g >= N:
                break
            else:
                if S[m] == 'M' and S[g] == 'G':
                    ans += 1
    print(ans)

input = lambda: stdin.readline().rstrip()
main()
0