結果

問題 No.1765 While Shining
ユーザー 炭酸水炭酸水
提出日時 2022-05-17 20:10:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 775 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 15,348 KB
最終ジャッジ日時 2024-09-15 15:31:29
合計ジャッジ時間 5,432 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 29 ms
10,496 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 30 ms
10,496 KB
testcase_04 WA -
testcase_05 AC 30 ms
10,496 KB
testcase_06 AC 30 ms
10,496 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 31 ms
10,496 KB
testcase_09 AC 156 ms
12,680 KB
testcase_10 AC 208 ms
13,916 KB
testcase_11 AC 187 ms
13,476 KB
testcase_12 AC 202 ms
13,708 KB
testcase_13 AC 185 ms
13,444 KB
testcase_14 AC 222 ms
13,824 KB
testcase_15 AC 225 ms
13,820 KB
testcase_16 AC 222 ms
13,696 KB
testcase_17 AC 223 ms
13,952 KB
testcase_18 AC 222 ms
13,824 KB
testcase_19 AC 224 ms
13,824 KB
testcase_20 AC 232 ms
13,952 KB
testcase_21 AC 228 ms
13,824 KB
testcase_22 WA -
testcase_23 AC 229 ms
13,824 KB
testcase_24 AC 239 ms
15,348 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