結果

問題 No.805 UMG
ユーザー ああいいああいい
提出日時 2021-12-24 11:44:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 257 bytes
コンパイル時間 928 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 64,696 KB
最終ジャッジ日時 2024-11-18 14:14:17
合計ジャッジ時間 3,086 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
57,732 KB
testcase_01 AC 38 ms
60,096 KB
testcase_02 AC 34 ms
52,296 KB
testcase_03 AC 37 ms
57,628 KB
testcase_04 AC 34 ms
51,628 KB
testcase_05 AC 33 ms
53,028 KB
testcase_06 AC 34 ms
52,208 KB
testcase_07 AC 37 ms
58,524 KB
testcase_08 AC 38 ms
60,248 KB
testcase_09 AC 36 ms
58,060 KB
testcase_10 AC 34 ms
52,412 KB
testcase_11 AC 34 ms
52,424 KB
testcase_12 AC 34 ms
52,884 KB
testcase_13 AC 36 ms
58,904 KB
testcase_14 AC 33 ms
52,744 KB
testcase_15 AC 43 ms
60,736 KB
testcase_16 AC 44 ms
61,328 KB
testcase_17 AC 42 ms
60,404 KB
testcase_18 AC 44 ms
60,768 KB
testcase_19 AC 42 ms
62,180 KB
testcase_20 AC 43 ms
61,492 KB
testcase_21 AC 43 ms
62,304 KB
testcase_22 AC 44 ms
61,356 KB
testcase_23 AC 120 ms
64,088 KB
testcase_24 AC 126 ms
63,968 KB
testcase_25 AC 124 ms
63,680 KB
testcase_26 AC 121 ms
64,696 KB
testcase_27 AC 125 ms
63,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = input()

ans = 0
K = (N-1) // 2
for delta in range(1,K+1):
    for i in range(N):
        if i + delta * 2 >= N:
            break
        if S[i] == 'U' and S[i+delta] == 'M' and S[i + 2 * delta] == 'G':
            ans += 1
print(ans)
0