結果

問題 No.805 UMG
ユーザー hiragnhiragn
提出日時 2022-11-12 22:05:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,422 ms / 2,000 ms
コード長 422 bytes
コンパイル時間 405 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 76,088 KB
最終ジャッジ日時 2024-09-14 10:35:42
合計ジャッジ時間 9,661 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,660 KB
testcase_01 AC 47 ms
60,092 KB
testcase_02 AC 43 ms
54,556 KB
testcase_03 AC 42 ms
54,596 KB
testcase_04 AC 43 ms
54,480 KB
testcase_05 AC 43 ms
54,648 KB
testcase_06 AC 43 ms
54,308 KB
testcase_07 AC 43 ms
53,564 KB
testcase_08 AC 46 ms
59,860 KB
testcase_09 AC 42 ms
55,160 KB
testcase_10 AC 43 ms
54,016 KB
testcase_11 AC 43 ms
54,676 KB
testcase_12 AC 44 ms
54,372 KB
testcase_13 AC 47 ms
59,608 KB
testcase_14 AC 43 ms
53,616 KB
testcase_15 AC 62 ms
65,488 KB
testcase_16 AC 61 ms
64,864 KB
testcase_17 AC 58 ms
65,948 KB
testcase_18 AC 67 ms
66,176 KB
testcase_19 AC 54 ms
64,124 KB
testcase_20 AC 64 ms
68,036 KB
testcase_21 AC 58 ms
65,352 KB
testcase_22 AC 62 ms
65,620 KB
testcase_23 AC 1,353 ms
75,884 KB
testcase_24 AC 1,368 ms
76,088 KB
testcase_25 AC 1,422 ms
75,856 KB
testcase_26 AC 1,367 ms
75,872 KB
testcase_27 AC 1,365 ms
75,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
import itertools


def main():
    n = int(input())
    s = input()

    d = collections.defaultdict(list)
    for i, c in enumerate(s, 1):
        d[c].append(i)

    ans = 0
    for i, j in itertools.product(d['U'], d['M']):
        if i > j:
            continue
        k = 2 * j - i
        if j < k <= n and k in d['G']:
            ans += 1
    print(ans)


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