結果

問題 No.805 UMG
ユーザー r_ishidar_ishida
提出日時 2020-02-11 12:00:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 167 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 81,936 KB
実行使用メモリ 75,640 KB
最終ジャッジ日時 2024-11-18 13:57:44
合計ジャッジ時間 2,956 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
59,048 KB
testcase_01 AC 41 ms
58,516 KB
testcase_02 AC 37 ms
53,216 KB
testcase_03 AC 41 ms
58,644 KB
testcase_04 AC 38 ms
53,316 KB
testcase_05 AC 38 ms
52,972 KB
testcase_06 AC 38 ms
53,216 KB
testcase_07 AC 41 ms
59,448 KB
testcase_08 AC 43 ms
60,140 KB
testcase_09 AC 42 ms
59,184 KB
testcase_10 AC 38 ms
52,404 KB
testcase_11 AC 38 ms
52,924 KB
testcase_12 AC 35 ms
51,976 KB
testcase_13 AC 42 ms
58,492 KB
testcase_14 AC 37 ms
53,320 KB
testcase_15 AC 46 ms
67,608 KB
testcase_16 AC 44 ms
64,796 KB
testcase_17 AC 44 ms
63,392 KB
testcase_18 AC 47 ms
67,560 KB
testcase_19 AC 42 ms
63,732 KB
testcase_20 AC 47 ms
68,536 KB
testcase_21 AC 45 ms
63,544 KB
testcase_22 AC 45 ms
64,960 KB
testcase_23 AC 116 ms
75,152 KB
testcase_24 AC 118 ms
75,588 KB
testcase_25 AC 121 ms
75,260 KB
testcase_26 AC 123 ms
75,436 KB
testcase_27 AC 123 ms
75,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = input()
cnt = 0
for i in range(n-2):
    for j in range(1, (n-i+1)//2):
        if s[i]+s[i+j]+s[i+j*2] == 'UMG':
            cnt += 1
print(cnt)
0