結果

問題 No.805 UMG
ユーザー はむ吉🐹はむ吉🐹
提出日時 2019-03-22 21:33:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 567 ms / 2,000 ms
コード長 364 bytes
コンパイル時間 764 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 75,388 KB
最終ジャッジ日時 2024-11-18 13:15:20
合計ジャッジ時間 5,027 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
60,360 KB
testcase_01 AC 45 ms
60,040 KB
testcase_02 AC 39 ms
59,024 KB
testcase_03 AC 40 ms
58,376 KB
testcase_04 AC 36 ms
52,544 KB
testcase_05 AC 34 ms
52,988 KB
testcase_06 AC 35 ms
53,020 KB
testcase_07 AC 38 ms
58,744 KB
testcase_08 AC 40 ms
60,392 KB
testcase_09 AC 39 ms
59,288 KB
testcase_10 AC 34 ms
53,348 KB
testcase_11 AC 39 ms
58,672 KB
testcase_12 AC 36 ms
53,444 KB
testcase_13 AC 41 ms
60,800 KB
testcase_14 AC 34 ms
52,396 KB
testcase_15 AC 61 ms
74,952 KB
testcase_16 AC 61 ms
74,872 KB
testcase_17 AC 53 ms
72,496 KB
testcase_18 AC 69 ms
75,040 KB
testcase_19 AC 48 ms
70,132 KB
testcase_20 AC 66 ms
74,916 KB
testcase_21 AC 57 ms
74,888 KB
testcase_22 AC 62 ms
75,152 KB
testcase_23 AC 551 ms
75,348 KB
testcase_24 AC 558 ms
75,220 KB
testcase_25 AC 542 ms
75,344 KB
testcase_26 AC 567 ms
75,268 KB
testcase_27 AC 551 ms
75,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env pypy3

import itertools


def solve(n, s):
    res = 0
    for i, j in itertools.combinations(range(n), 2):
        k = 2 * j - i
        if j < k < n and s[i] == "U" and s[j] == "M" and s[k] == "G":
            res += 1
    return res


def main():
    n = int(input())
    s = input()
    print(solve(n, s))


if __name__ == "__main__":
    main()
0