結果

問題 No.805 UMG
ユーザー kawacchukawacchu
提出日時 2019-03-23 09:46:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 157 ms / 2,000 ms
コード長 127 bytes
コンパイル時間 450 ms
コンパイル使用メモリ 81,788 KB
実行使用メモリ 75,684 KB
最終ジャッジ日時 2024-11-18 13:31:08
合計ジャッジ時間 2,983 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
59,856 KB
testcase_01 AC 40 ms
58,640 KB
testcase_02 AC 36 ms
52,052 KB
testcase_03 AC 39 ms
58,340 KB
testcase_04 AC 36 ms
52,352 KB
testcase_05 AC 37 ms
52,132 KB
testcase_06 AC 37 ms
52,824 KB
testcase_07 AC 41 ms
58,716 KB
testcase_08 AC 41 ms
59,376 KB
testcase_09 AC 40 ms
57,708 KB
testcase_10 AC 37 ms
52,532 KB
testcase_11 AC 39 ms
52,492 KB
testcase_12 AC 37 ms
53,116 KB
testcase_13 AC 41 ms
58,440 KB
testcase_14 AC 36 ms
52,992 KB
testcase_15 AC 46 ms
65,908 KB
testcase_16 AC 45 ms
66,564 KB
testcase_17 AC 44 ms
62,780 KB
testcase_18 AC 48 ms
67,568 KB
testcase_19 AC 45 ms
62,824 KB
testcase_20 AC 48 ms
67,052 KB
testcase_21 AC 44 ms
64,840 KB
testcase_22 AC 47 ms
65,396 KB
testcase_23 AC 149 ms
75,200 KB
testcase_24 AC 155 ms
75,612 KB
testcase_25 AC 153 ms
75,268 KB
testcase_26 AC 152 ms
75,684 KB
testcase_27 AC 157 ms
75,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
S=input()
a=0
for i in range(1,(N+1)//2):
 for j in range(N-2*i):
  if S[j]+S[j+i]+S[j+2*i]=="UMG":a+=1
print(a)
0