結果

問題 No.805 UMG
ユーザー tentententen
提出日時 2022-09-13 16:27:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 110 ms / 2,000 ms
コード長 1,299 bytes
コンパイル時間 1,920 ms
コンパイル使用メモリ 77,348 KB
実行使用メモリ 37,812 KB
最終ジャッジ日時 2024-11-30 22:14:05
合計ジャッジ時間 4,594 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
36,748 KB
testcase_01 AC 48 ms
36,716 KB
testcase_02 AC 47 ms
36,736 KB
testcase_03 AC 47 ms
36,648 KB
testcase_04 AC 49 ms
36,496 KB
testcase_05 AC 48 ms
36,744 KB
testcase_06 AC 46 ms
36,972 KB
testcase_07 AC 46 ms
36,908 KB
testcase_08 AC 46 ms
36,888 KB
testcase_09 AC 47 ms
36,660 KB
testcase_10 AC 48 ms
36,632 KB
testcase_11 AC 49 ms
36,708 KB
testcase_12 AC 50 ms
36,916 KB
testcase_13 AC 50 ms
36,748 KB
testcase_14 AC 47 ms
36,908 KB
testcase_15 AC 54 ms
36,604 KB
testcase_16 AC 55 ms
36,552 KB
testcase_17 AC 53 ms
36,920 KB
testcase_18 AC 53 ms
37,152 KB
testcase_19 AC 50 ms
36,984 KB
testcase_20 AC 54 ms
36,648 KB
testcase_21 AC 52 ms
36,888 KB
testcase_22 AC 54 ms
36,916 KB
testcase_23 AC 105 ms
37,552 KB
testcase_24 AC 106 ms
37,572 KB
testcase_25 AC 110 ms
37,812 KB
testcase_26 AC 108 ms
37,436 KB
testcase_27 AC 108 ms
37,552 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