結果

問題 No.805 UMG
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-18 18:44:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 241 ms / 2,000 ms
コード長 141 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 81,780 KB
実行使用メモリ 75,852 KB
最終ジャッジ日時 2024-09-18 18:44:08
合計ジャッジ時間 3,719 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
60,032 KB
testcase_01 AC 43 ms
60,160 KB
testcase_02 AC 46 ms
59,392 KB
testcase_03 AC 44 ms
59,520 KB
testcase_04 AC 37 ms
51,840 KB
testcase_05 AC 36 ms
51,712 KB
testcase_06 AC 36 ms
52,268 KB
testcase_07 AC 43 ms
59,520 KB
testcase_08 AC 47 ms
59,136 KB
testcase_09 AC 44 ms
59,264 KB
testcase_10 AC 37 ms
51,840 KB
testcase_11 AC 43 ms
58,880 KB
testcase_12 AC 37 ms
52,096 KB
testcase_13 AC 45 ms
60,160 KB
testcase_14 AC 38 ms
51,808 KB
testcase_15 AC 50 ms
67,072 KB
testcase_16 AC 49 ms
66,432 KB
testcase_17 AC 49 ms
64,384 KB
testcase_18 AC 54 ms
68,608 KB
testcase_19 AC 47 ms
63,360 KB
testcase_20 AC 55 ms
68,352 KB
testcase_21 AC 51 ms
65,292 KB
testcase_22 AC 50 ms
65,792 KB
testcase_23 AC 240 ms
75,148 KB
testcase_24 AC 238 ms
75,744 KB
testcase_25 AC 238 ms
75,264 KB
testcase_26 AC 238 ms
75,404 KB
testcase_27 AC 241 ms
75,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
s=input()
c=0
for i in range(n):
	for j in range(1,n+1):
		if 0<=i-j and i+j<n and s[i-j]+s[i]+s[i+j]=="UMG":
			c+=1
print(c)
0