結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,020 KB
testcase_01 AC 132 ms
53,912 KB
testcase_02 AC 115 ms
52,776 KB
testcase_03 AC 132 ms
54,108 KB
testcase_04 AC 131 ms
54,044 KB
testcase_05 AC 128 ms
54,012 KB
testcase_06 AC 131 ms
54,132 KB
testcase_07 AC 132 ms
53,956 KB
testcase_08 AC 136 ms
54,080 KB
testcase_09 AC 130 ms
54,112 KB
testcase_10 AC 131 ms
53,976 KB
testcase_11 AC 131 ms
54,176 KB
testcase_12 AC 129 ms
54,244 KB
testcase_13 AC 129 ms
54,020 KB
testcase_14 AC 130 ms
54,244 KB
testcase_15 AC 148 ms
54,368 KB
testcase_16 AC 143 ms
54,480 KB
testcase_17 AC 144 ms
54,128 KB
testcase_18 AC 150 ms
54,000 KB
testcase_19 AC 131 ms
52,976 KB
testcase_20 AC 151 ms
54,048 KB
testcase_21 AC 144 ms
53,992 KB
testcase_22 AC 150 ms
54,264 KB
testcase_23 AC 187 ms
54,156 KB
testcase_24 AC 186 ms
54,192 KB
testcase_25 AC 186 ms
54,052 KB
testcase_26 AC 186 ms
54,168 KB
testcase_27 AC 188 ms
54,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int ans = 0;
        int n = sc.nextInt();
        String s = sc.next();
        for(int j = 1; j < n; j++) {
            if(s.charAt(j) == 'M') {
                for(int dist = 1; dist < n; dist++) {
                    int i = j - dist;
                    int k = j + dist;
                    if(0 <= i && k < n) {
                        if(s.charAt(i) == 'U' && s.charAt(k) == 'G') {
                            ans++;
                        }
                    }
                }
            }
        }
        System.out.println(ans);
    }
}
0