結果

問題 No.805 UMG
ユーザー c-yanc-yan
提出日時 2020-08-07 23:30:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 452 bytes
コンパイル時間 95 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,376 KB
最終ジャッジ日時 2024-11-18 14:06:26
合計ジャッジ時間 28,091 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
17,572 KB
testcase_01 AC 25 ms
21,248 KB
testcase_02 AC 25 ms
17,444 KB
testcase_03 AC 27 ms
21,376 KB
testcase_04 AC 29 ms
17,568 KB
testcase_05 AC 27 ms
21,248 KB
testcase_06 AC 26 ms
17,444 KB
testcase_07 AC 27 ms
21,376 KB
testcase_08 AC 29 ms
17,444 KB
testcase_09 AC 27 ms
10,752 KB
testcase_10 AC 27 ms
10,752 KB
testcase_11 AC 27 ms
10,752 KB
testcase_12 AC 25 ms
10,624 KB
testcase_13 AC 28 ms
10,624 KB
testcase_14 AC 26 ms
10,752 KB
testcase_15 AC 1,793 ms
10,752 KB
testcase_16 AC 1,371 ms
10,624 KB
testcase_17 AC 775 ms
10,624 KB
testcase_18 TLE -
testcase_19 AC 490 ms
10,752 KB
testcase_20 TLE -
testcase_21 AC 948 ms
10,624 KB
testcase_22 AC 1,353 ms
10,624 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = input()

result = 0
i = -1
while i < N:
    i = S.find('U', i + 1)
    if i == -1:
        break
    j = i
    while j < N:
        j = S.find('M', j + 1)
        if j == -1:
            break
        k = j
        while k < N:
            k = S.find('G', k + 1)
            if k == -1:
                break
            if j - i != k - j:
                continue
            result += 1
            #print(i, j, k)
print(result)
0