結果

問題 No.805 UMG
ユーザー tentententen
提出日時 2020-12-07 14:29:48
言語 Java
(openjdk 23)
結果
AC  
実行時間 345 ms / 2,000 ms
コード長 912 bytes
コンパイル時間 2,288 ms
コンパイル使用メモリ 75,472 KB
実行使用メモリ 46,532 KB
最終ジャッジ日時 2024-11-18 14:08:35
合計ジャッジ時間 8,274 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,648 KB
testcase_01 AC 134 ms
41,260 KB
testcase_02 AC 128 ms
41,084 KB
testcase_03 AC 131 ms
41,192 KB
testcase_04 AC 132 ms
41,192 KB
testcase_05 AC 130 ms
41,252 KB
testcase_06 AC 129 ms
41,324 KB
testcase_07 AC 134 ms
41,364 KB
testcase_08 AC 132 ms
41,080 KB
testcase_09 AC 121 ms
40,240 KB
testcase_10 AC 128 ms
41,172 KB
testcase_11 AC 129 ms
41,272 KB
testcase_12 AC 133 ms
41,128 KB
testcase_13 AC 134 ms
41,480 KB
testcase_14 AC 132 ms
41,160 KB
testcase_15 AC 157 ms
41,420 KB
testcase_16 AC 162 ms
41,980 KB
testcase_17 AC 160 ms
41,844 KB
testcase_18 AC 165 ms
41,936 KB
testcase_19 AC 149 ms
41,604 KB
testcase_20 AC 170 ms
41,984 KB
testcase_21 AC 161 ms
41,972 KB
testcase_22 AC 159 ms
42,020 KB
testcase_23 AC 331 ms
46,148 KB
testcase_24 AC 301 ms
46,532 KB
testcase_25 AC 336 ms
46,312 KB
testcase_26 AC 338 ms
46,400 KB
testcase_27 AC 345 ms
46,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        char[] arr = sc.next().toCharArray();
        TreeSet<Integer> uSet = new TreeSet<>();
        TreeSet<Integer> mSet = new TreeSet<>();
        TreeSet<Integer> gSet = new TreeSet<>();
        for (int i = 0; i < n; i++) {
            if (arr[i] == 'U') {
                uSet.add(i);
            } else if (arr[i] == 'M') {
                mSet.add(i);
            } else {
                gSet.add(i);
            }
        }
        long ans = 0;
        for (int m : mSet) {
            for (int u : uSet) {
                if (m < u) {
                    break;
                }
                if (gSet.contains(m * 2 - u)) {
                    ans++;
                }
            }
        }
        System.out.println(ans);
    }
}
0