結果

問題 No.805 UMG
ユーザー Beat7501Beat7501
提出日時 2019-03-22 21:34:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 328 ms / 2,000 ms
コード長 489 bytes
コンパイル時間 2,506 ms
コンパイル使用メモリ 80,564 KB
実行使用メモリ 47,608 KB
最終ジャッジ日時 2024-04-29 10:30:44
合計ジャッジ時間 8,553 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,552 KB
testcase_01 AC 134 ms
41,668 KB
testcase_02 AC 130 ms
41,072 KB
testcase_03 AC 130 ms
41,596 KB
testcase_04 AC 131 ms
41,124 KB
testcase_05 AC 132 ms
41,528 KB
testcase_06 AC 128 ms
41,032 KB
testcase_07 AC 129 ms
41,344 KB
testcase_08 AC 129 ms
41,264 KB
testcase_09 AC 131 ms
41,248 KB
testcase_10 AC 127 ms
41,260 KB
testcase_11 AC 132 ms
41,412 KB
testcase_12 AC 132 ms
41,424 KB
testcase_13 AC 132 ms
41,212 KB
testcase_14 AC 133 ms
41,292 KB
testcase_15 AC 164 ms
44,996 KB
testcase_16 AC 169 ms
45,324 KB
testcase_17 AC 163 ms
43,868 KB
testcase_18 AC 170 ms
45,484 KB
testcase_19 AC 165 ms
42,920 KB
testcase_20 AC 170 ms
45,336 KB
testcase_21 AC 151 ms
44,292 KB
testcase_22 AC 155 ms
45,244 KB
testcase_23 AC 328 ms
47,608 KB
testcase_24 AC 293 ms
47,420 KB
testcase_25 AC 293 ms
47,248 KB
testcase_26 AC 291 ms
47,404 KB
testcase_27 AC 277 ms
47,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main{
	public static void main(String args[]){
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		String s = sc.next();
		String[] su = {"U","M","G"};
		int ans = 0;
		for(int i = 0; i < n; i++){
			if(su[0].equals(s.substring(i,i+1))){
				for(int j = 1; i+j*2 < n; j++){
					if(su[1].equals(s.substring(i+j,i+j+1))){
						if(su[2].equals(s.substring(i+j*2,i+j*2+1))){
							ans++;
						}
					}
				}
			}
		}
		System.out.println(ans);
	}
}
0