結果

問題 No.805 UMG
ユーザー tsunabittsunabit
提出日時 2019-07-13 20:35:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 200 ms / 2,000 ms
コード長 613 bytes
コンパイル時間 2,921 ms
コンパイル使用メモリ 74,740 KB
実行使用メモリ 54,564 KB
最終ジャッジ日時 2024-11-18 13:51:39
合計ジャッジ時間 7,369 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
53,880 KB
testcase_01 AC 117 ms
53,968 KB
testcase_02 AC 117 ms
53,884 KB
testcase_03 AC 104 ms
52,968 KB
testcase_04 AC 104 ms
52,996 KB
testcase_05 AC 108 ms
53,292 KB
testcase_06 AC 117 ms
54,228 KB
testcase_07 AC 102 ms
52,988 KB
testcase_08 AC 122 ms
54,036 KB
testcase_09 AC 118 ms
53,972 KB
testcase_10 AC 117 ms
53,876 KB
testcase_11 AC 118 ms
54,064 KB
testcase_12 AC 107 ms
53,092 KB
testcase_13 AC 119 ms
54,080 KB
testcase_14 AC 107 ms
53,160 KB
testcase_15 AC 118 ms
53,300 KB
testcase_16 AC 128 ms
54,272 KB
testcase_17 AC 130 ms
54,228 KB
testcase_18 AC 117 ms
53,088 KB
testcase_19 AC 127 ms
54,228 KB
testcase_20 AC 116 ms
53,248 KB
testcase_21 AC 125 ms
54,136 KB
testcase_22 AC 130 ms
53,984 KB
testcase_23 AC 174 ms
53,416 KB
testcase_24 AC 174 ms
53,392 KB
testcase_25 AC 200 ms
54,548 KB
testcase_26 AC 185 ms
54,564 KB
testcase_27 AC 172 ms
53,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No805 {
    public static void main(String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int n = sc.nextInt();
    	String s = sc.next();
    	char[] as = new char[n];
    	
    	for(int i = 0; i < n; i++) {
    		as[i] = s.charAt(i);
    	}
    	int c = 0;
    	for(int i = 0; i < n; i++) {
    		for(int k = n-1; k > i; k--) {
    			double j = ((i+k)/2.0);
    			if((i+k)%2 == 0 && (j-i) == (k-j) && as[i] == 'U' && as[(int)j] == 'M' && as[k] == 'G') {
    				c++;
    			}
    		}
    	}
    	System.out.println(c);
    }
}
0