結果

問題 No.805 UMG
ユーザー gma712gma712
提出日時 2019-03-26 15:19:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 106 ms / 2,000 ms
コード長 494 bytes
コンパイル時間 646 ms
コンパイル使用メモリ 82,540 KB
実行使用メモリ 74,436 KB
最終ジャッジ日時 2024-11-18 13:35:43
合計ジャッジ時間 2,692 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,244 KB
testcase_01 AC 36 ms
58,388 KB
testcase_02 AC 35 ms
53,492 KB
testcase_03 AC 36 ms
57,736 KB
testcase_04 AC 34 ms
52,556 KB
testcase_05 AC 34 ms
53,348 KB
testcase_06 AC 35 ms
52,236 KB
testcase_07 AC 35 ms
52,612 KB
testcase_08 AC 37 ms
59,548 KB
testcase_09 AC 36 ms
58,204 KB
testcase_10 AC 34 ms
52,136 KB
testcase_11 AC 33 ms
52,740 KB
testcase_12 AC 33 ms
51,880 KB
testcase_13 AC 36 ms
58,792 KB
testcase_14 AC 35 ms
53,564 KB
testcase_15 AC 43 ms
61,296 KB
testcase_16 AC 43 ms
61,940 KB
testcase_17 AC 42 ms
60,308 KB
testcase_18 AC 44 ms
61,124 KB
testcase_19 AC 42 ms
60,496 KB
testcase_20 AC 42 ms
61,620 KB
testcase_21 AC 42 ms
61,172 KB
testcase_22 AC 41 ms
61,032 KB
testcase_23 AC 104 ms
73,744 KB
testcase_24 AC 103 ms
73,652 KB
testcase_25 AC 106 ms
73,312 KB
testcase_26 AC 103 ms
73,476 KB
testcase_27 AC 106 ms
74,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8


def main():
    n = int(input())
    s = list(input())
    a = 0
    for i in range(1, n):
        if s[i] != 'M':
            continue
        else:
            for j in range(i):
                if s[j] != 'U':
                    continue
                else:
                    if 2 * i - j >= n:
                        continue
                    else:
                        a += 1 if s[2 * i - j] == 'G' else 0
    print(a)


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