結果

問題 No.805 UMG
ユーザー tentententen
提出日時 2022-09-13 16:27:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 88 ms / 2,000 ms
コード長 1,299 bytes
コンパイル時間 2,151 ms
コンパイル使用メモリ 73,828 KB
実行使用メモリ 50,948 KB
最終ジャッジ日時 2023-08-20 18:28:50
合計ジャッジ時間 4,792 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
49,836 KB
testcase_01 AC 35 ms
49,224 KB
testcase_02 AC 35 ms
49,328 KB
testcase_03 AC 35 ms
49,360 KB
testcase_04 AC 35 ms
49,280 KB
testcase_05 AC 35 ms
49,424 KB
testcase_06 AC 35 ms
49,332 KB
testcase_07 AC 34 ms
49,320 KB
testcase_08 AC 34 ms
49,524 KB
testcase_09 AC 35 ms
49,596 KB
testcase_10 AC 34 ms
49,220 KB
testcase_11 AC 35 ms
49,188 KB
testcase_12 AC 34 ms
49,220 KB
testcase_13 AC 33 ms
47,308 KB
testcase_14 AC 34 ms
49,192 KB
testcase_15 AC 40 ms
49,244 KB
testcase_16 AC 40 ms
49,332 KB
testcase_17 AC 38 ms
49,196 KB
testcase_18 AC 53 ms
49,248 KB
testcase_19 AC 37 ms
49,336 KB
testcase_20 AC 41 ms
49,192 KB
testcase_21 AC 38 ms
49,224 KB
testcase_22 AC 40 ms
49,772 KB
testcase_23 AC 82 ms
49,020 KB
testcase_24 AC 83 ms
48,780 KB
testcase_25 AC 84 ms
50,948 KB
testcase_26 AC 88 ms
50,512 KB
testcase_27 AC 85 ms
50,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        char[] values = sc.next().toCharArray();
        int count = 0;
        for (int i = 1; i * 2 < n; i++) {
            for (int j = 0; j + i * 2 < n; j++) {
                if (values[j] == 'U' && values[j + i] == 'M' && values[j + i * 2] == 'G') {
                    count++;
                }
            }
        }
        System.out.println(count);
    }
}
    
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0