結果

問題 No.805 UMG
ユーザー motor_radialmotor_radial
提出日時 2019-08-22 20:37:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 179 ms / 2,000 ms
コード長 209 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 82,016 KB
実行使用メモリ 66,428 KB
最終ジャッジ日時 2024-11-18 13:53:23
合計ジャッジ時間 3,020 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
59,500 KB
testcase_01 AC 50 ms
59,728 KB
testcase_02 AC 43 ms
58,612 KB
testcase_03 AC 43 ms
59,420 KB
testcase_04 AC 40 ms
53,132 KB
testcase_05 AC 37 ms
52,492 KB
testcase_06 AC 37 ms
52,816 KB
testcase_07 AC 43 ms
58,852 KB
testcase_08 AC 44 ms
60,400 KB
testcase_09 AC 42 ms
59,864 KB
testcase_10 AC 37 ms
52,768 KB
testcase_11 AC 42 ms
59,312 KB
testcase_12 AC 38 ms
51,824 KB
testcase_13 AC 44 ms
61,308 KB
testcase_14 AC 37 ms
52,124 KB
testcase_15 AC 54 ms
65,108 KB
testcase_16 AC 51 ms
62,056 KB
testcase_17 AC 50 ms
62,800 KB
testcase_18 AC 52 ms
62,356 KB
testcase_19 AC 50 ms
63,140 KB
testcase_20 AC 55 ms
63,440 KB
testcase_21 AC 53 ms
63,212 KB
testcase_22 AC 50 ms
62,776 KB
testcase_23 AC 179 ms
65,988 KB
testcase_24 AC 172 ms
65,220 KB
testcase_25 AC 167 ms
66,428 KB
testcase_26 AC 171 ms
65,484 KB
testcase_27 AC 167 ms
65,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
S=list(input())
cnt=0
for i in range(N):
    for k in range(i+1,N):
        if (k*2-i)>=N or k*2-i<0: continue
        if S[i]=="U" and S[k]=="M" and S[k*2-i]=="G":
            cnt+=1
print(cnt)
0