結果

問題 No.805 UMG
ユーザー KentarokumuraKentarokumura
提出日時 2019-03-22 21:37:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 219 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 64,256 KB
最終ジャッジ日時 2024-11-18 13:17:38
合計ジャッジ時間 2,609 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
58,452 KB
testcase_01 AC 40 ms
60,620 KB
testcase_02 AC 38 ms
58,768 KB
testcase_03 AC 40 ms
59,988 KB
testcase_04 AC 35 ms
53,072 KB
testcase_05 AC 34 ms
53,212 KB
testcase_06 AC 36 ms
52,200 KB
testcase_07 AC 40 ms
58,880 KB
testcase_08 AC 40 ms
60,652 KB
testcase_09 AC 39 ms
58,448 KB
testcase_10 AC 34 ms
52,864 KB
testcase_11 AC 38 ms
59,624 KB
testcase_12 AC 35 ms
52,804 KB
testcase_13 AC 42 ms
60,872 KB
testcase_14 AC 35 ms
52,320 KB
testcase_15 AC 47 ms
63,264 KB
testcase_16 AC 43 ms
61,944 KB
testcase_17 AC 46 ms
63,188 KB
testcase_18 AC 44 ms
62,084 KB
testcase_19 AC 44 ms
61,328 KB
testcase_20 AC 47 ms
63,412 KB
testcase_21 AC 46 ms
63,048 KB
testcase_22 AC 44 ms
62,056 KB
testcase_23 AC 125 ms
63,152 KB
testcase_24 AC 121 ms
63,244 KB
testcase_25 AC 116 ms
64,256 KB
testcase_26 AC 130 ms
63,408 KB
testcase_27 AC 128 ms
63,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
S=input()
num=0
for i in range(N):
    for k in range(i+1,N):
        if (i+k)%2!=0:
            continue
        j=(i+k)//2
        if S[i]=='U' and S[j]=='M' and S[k]=='G':
            num+=1
print(num)
0