結果

問題 No.805 UMG
ユーザー Seha46041561Seha46041561
提出日時 2019-04-07 12:16:59
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 366 bytes
コンパイル時間 860 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 142,392 KB
最終ジャッジ日時 2024-11-18 13:41:02
合計ジャッジ時間 37,358 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
68,748 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 41 ms
135,324 KB
testcase_04 AC 32 ms
60,080 KB
testcase_05 AC 35 ms
59,720 KB
testcase_06 AC 32 ms
59,936 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 34 ms
60,104 KB
testcase_11 WA -
testcase_12 AC 34 ms
59,080 KB
testcase_13 WA -
testcase_14 AC 34 ms
59,044 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 WA -
testcase_18 TLE -
testcase_19 WA -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = input()
#print(N, S)

ans = 0
for i in range(N):
    #print(S[i])
    for j in range(N):
        #print(S[i],S[j])
        for k in range(N):
            #print(S[i],S[j],S[k])
            #print(i,j,k)
            if S[i] == 'U' and S[j] == 'M' and S[k] == 'G':
                if j - i == k -j:
                    ans += 1
        
print(ans)
0