結果

問題 No.1765 While Shining
ユーザー 炭酸水炭酸水
提出日時 2022-05-17 20:33:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 258 ms / 2,000 ms
コード長 786 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 15,468 KB
最終ジャッジ日時 2024-09-15 15:52:59
合計ジャッジ時間 4,806 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,752 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 31 ms
10,624 KB
testcase_08 AC 31 ms
10,752 KB
testcase_09 AC 150 ms
12,932 KB
testcase_10 AC 214 ms
14,040 KB
testcase_11 AC 190 ms
13,472 KB
testcase_12 AC 201 ms
13,716 KB
testcase_13 AC 186 ms
13,440 KB
testcase_14 AC 221 ms
14,080 KB
testcase_15 AC 226 ms
13,952 KB
testcase_16 AC 225 ms
13,948 KB
testcase_17 AC 224 ms
13,956 KB
testcase_18 AC 224 ms
13,952 KB
testcase_19 AC 223 ms
14,080 KB
testcase_20 AC 225 ms
13,952 KB
testcase_21 AC 225 ms
13,952 KB
testcase_22 AC 224 ms
13,952 KB
testcase_23 AC 223 ms
14,072 KB
testcase_24 AC 258 ms
15,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))

L = 0
while a[L] == 0 and L < n:
    L += 1
    
if L == n:
    print(0)

else:
    R = L
    while L < n - 1:
        count = 0
        
        while R < n - 1 and a[R] != a[R + 1]:
            R += 1
            count += 1
        
        if R == n - 1 and count >= 1:
            count -= 1

        a[L] += count
        while L < R - 1:
            L += 1
            count -= 1
            if a[L] == 1:
                a[L] += count
        
        if L == R:
            L += 1
            R = L
        
        elif a[R] == 0:
            while R < n - 1 and a[R] == 0:
                R += 1
            L = R
        
        elif a[R] == 1:
            L = R

a[n - 1] = 0
ans = 0
for i in a:
    ans += i
print(ans)
0