結果

問題 No.805 UMG
ユーザー ameame
提出日時 2019-03-22 21:46:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 188 ms / 2,000 ms
コード長 844 bytes
コンパイル時間 2,334 ms
コンパイル使用メモリ 74,052 KB
実行使用メモリ 54,684 KB
最終ジャッジ日時 2024-11-18 13:18:13
合計ジャッジ時間 6,786 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
53,996 KB
testcase_01 AC 129 ms
54,084 KB
testcase_02 AC 123 ms
54,044 KB
testcase_03 AC 129 ms
54,036 KB
testcase_04 AC 126 ms
53,908 KB
testcase_05 AC 126 ms
53,920 KB
testcase_06 AC 131 ms
54,012 KB
testcase_07 AC 130 ms
54,180 KB
testcase_08 AC 127 ms
54,180 KB
testcase_09 AC 120 ms
52,888 KB
testcase_10 AC 129 ms
54,176 KB
testcase_11 AC 126 ms
54,124 KB
testcase_12 AC 135 ms
54,172 KB
testcase_13 AC 131 ms
53,908 KB
testcase_14 AC 126 ms
54,020 KB
testcase_15 AC 137 ms
54,132 KB
testcase_16 AC 138 ms
53,908 KB
testcase_17 AC 136 ms
54,212 KB
testcase_18 AC 140 ms
54,032 KB
testcase_19 AC 135 ms
54,076 KB
testcase_20 AC 143 ms
54,052 KB
testcase_21 AC 138 ms
53,980 KB
testcase_22 AC 135 ms
54,024 KB
testcase_23 AC 185 ms
54,160 KB
testcase_24 AC 170 ms
53,100 KB
testcase_25 AC 188 ms
54,092 KB
testcase_26 AC 177 ms
54,028 KB
testcase_27 AC 175 ms
54,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main {
    // U M G
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        String s = sc.next();
        int ans = 0;
        for (int i = 0; i < n; i++) {
            char c = s.charAt(i);
            if (c != 'M') {
                continue;
            }
            for (int j = 0; j < i; j++) {
                char u = s.charAt(j);
                if (u != 'U') {
                    continue;
                }
                int sa = i - j;
                if (sa + i >= n) {
                    continue;
                }
                char g = s.charAt(sa + i);
                if (g == 'G') {
                    ans++;
                }

            }
        }
        System.out.println(ans);
        sc.close();
    }
}
0