結果

問題 No.805 UMG
ユーザー gma712gma712
提出日時 2019-03-26 15:19:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 494 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 73,416 KB
最終ジャッジ日時 2024-04-29 10:46:14
合計ジャッジ時間 2,724 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,968 KB
testcase_01 AC 46 ms
57,472 KB
testcase_02 AC 42 ms
52,096 KB
testcase_03 AC 43 ms
57,344 KB
testcase_04 AC 40 ms
51,968 KB
testcase_05 AC 39 ms
51,840 KB
testcase_06 AC 39 ms
51,584 KB
testcase_07 AC 40 ms
51,968 KB
testcase_08 AC 44 ms
57,984 KB
testcase_09 AC 44 ms
57,728 KB
testcase_10 AC 40 ms
51,840 KB
testcase_11 AC 40 ms
51,968 KB
testcase_12 AC 39 ms
52,352 KB
testcase_13 AC 45 ms
57,600 KB
testcase_14 AC 40 ms
52,352 KB
testcase_15 AC 49 ms
60,288 KB
testcase_16 AC 50 ms
61,000 KB
testcase_17 AC 48 ms
60,544 KB
testcase_18 AC 50 ms
60,288 KB
testcase_19 AC 48 ms
59,852 KB
testcase_20 AC 49 ms
60,288 KB
testcase_21 AC 49 ms
59,784 KB
testcase_22 AC 51 ms
60,288 KB
testcase_23 AC 114 ms
73,088 KB
testcase_24 AC 114 ms
73,000 KB
testcase_25 AC 117 ms
72,632 KB
testcase_26 AC 116 ms
73,108 KB
testcase_27 AC 119 ms
73,416 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