結果

問題 No.805 UMG
ユーザー URechaRechaURechaRecha
提出日時 2019-09-06 15:42:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 330 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 82,180 KB
実行使用メモリ 66,872 KB
最終ジャッジ日時 2024-11-18 13:53:29
合計ジャッジ時間 2,375 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,952 KB
testcase_01 AC 38 ms
53,208 KB
testcase_02 AC 38 ms
53,132 KB
testcase_03 AC 39 ms
52,680 KB
testcase_04 AC 37 ms
52,092 KB
testcase_05 AC 37 ms
52,948 KB
testcase_06 AC 37 ms
52,808 KB
testcase_07 AC 37 ms
52,720 KB
testcase_08 AC 37 ms
53,272 KB
testcase_09 AC 37 ms
53,272 KB
testcase_10 AC 37 ms
53,080 KB
testcase_11 AC 38 ms
52,572 KB
testcase_12 AC 38 ms
52,728 KB
testcase_13 AC 38 ms
52,472 KB
testcase_14 AC 37 ms
52,268 KB
testcase_15 AC 48 ms
62,592 KB
testcase_16 AC 47 ms
61,104 KB
testcase_17 AC 47 ms
62,288 KB
testcase_18 AC 48 ms
62,396 KB
testcase_19 AC 46 ms
60,932 KB
testcase_20 AC 48 ms
61,876 KB
testcase_21 AC 47 ms
61,584 KB
testcase_22 AC 48 ms
61,620 KB
testcase_23 AC 78 ms
66,164 KB
testcase_24 AC 78 ms
65,988 KB
testcase_25 AC 79 ms
66,872 KB
testcase_26 AC 79 ms
65,948 KB
testcase_27 AC 80 ms
65,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    N = int(input())
    S = input()
    u = S.find('U')+1
    cnt = 0
    while u:
        m = S.find('M',u)+1
        while m:
            g = m*2 - u
            if g <= N:
                if S[g-1] =='G':
                    cnt +=1
            m = S.find('M',m)+1
        u = S.find('U',u)+1
    print(cnt)
main()
0