結果

問題 No.805 UMG
ユーザー YamadaYamada
提出日時 2019-04-12 17:25:54
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 268 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 63,460 KB
最終ジャッジ日時 2024-11-18 13:45:09
合計ジャッジ時間 14,808 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,128 KB
testcase_01 AC 37 ms
52,072 KB
testcase_02 AC 37 ms
52,856 KB
testcase_03 AC 37 ms
51,876 KB
testcase_04 AC 38 ms
52,672 KB
testcase_05 AC 37 ms
52,100 KB
testcase_06 AC 39 ms
52,404 KB
testcase_07 AC 38 ms
52,364 KB
testcase_08 AC 38 ms
52,464 KB
testcase_09 AC 39 ms
52,128 KB
testcase_10 AC 38 ms
52,828 KB
testcase_11 AC 37 ms
53,052 KB
testcase_12 AC 38 ms
53,292 KB
testcase_13 AC 39 ms
52,688 KB
testcase_14 AC 38 ms
52,616 KB
testcase_15 AC 57 ms
60,420 KB
testcase_16 AC 53 ms
59,168 KB
testcase_17 AC 49 ms
58,836 KB
testcase_18 AC 62 ms
58,908 KB
testcase_19 AC 48 ms
60,380 KB
testcase_20 AC 61 ms
59,192 KB
testcase_21 AC 52 ms
59,044 KB
testcase_22 AC 54 ms
58,752 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N =int(input())
S =[i for i in input()]
dic = {"U":[],"M":[],"G":[]}
for i,str in enumerate(S):
    dic[str].append(i)
ans = 0
for j in dic["M"]:
    for i in dic["U"]:
        if i > j:
            break
        if 2*j - i in dic["G"]:
            ans += 1
print(ans)
0