結果

問題 No.1765 While Shining
ユーザー hir355hir355
提出日時 2021-11-26 22:32:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 669 bytes
コンパイル時間 129 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 105,520 KB
最終ジャッジ日時 2024-06-29 18:12:44
合計ジャッジ時間 2,842 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,352 KB
testcase_01 AC 32 ms
51,968 KB
testcase_02 AC 31 ms
51,944 KB
testcase_03 AC 31 ms
52,352 KB
testcase_04 AC 32 ms
52,480 KB
testcase_05 AC 32 ms
53,120 KB
testcase_06 AC 31 ms
52,864 KB
testcase_07 AC 32 ms
52,352 KB
testcase_08 AC 33 ms
53,120 KB
testcase_09 AC 90 ms
94,336 KB
testcase_10 AC 109 ms
104,860 KB
testcase_11 AC 101 ms
98,804 KB
testcase_12 AC 108 ms
101,828 KB
testcase_13 AC 98 ms
98,560 KB
testcase_14 AC 101 ms
105,312 KB
testcase_15 AC 100 ms
105,088 KB
testcase_16 AC 104 ms
105,336 KB
testcase_17 AC 111 ms
105,420 KB
testcase_18 AC 109 ms
105,472 KB
testcase_19 AC 116 ms
105,368 KB
testcase_20 AC 114 ms
105,216 KB
testcase_21 AC 113 ms
105,520 KB
testcase_22 AC 104 ms
105,344 KB
testcase_23 AC 102 ms
105,344 KB
testcase_24 AC 77 ms
104,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
b = [n - 1] * n
idx = 0
for i in range(0, n, 2):
    if a[i] == 0:
        for j in range(idx, i + 1, 2):
            b[j] = i
        idx = i + 2
idx = 1
for i in range(1, n, 2):
    if a[i] == 0:
        for j in range(idx, i + 1, 2):
            b[j] = i
        idx = i + 2
c = [n - 1] * n
idx = 0
for i in range(1, n, 2):
    if a[i] == 1:
        for j in range(idx, i, 2):
            c[j] = i
        idx = i + 1
idx = 1
for i in range(0, n, 2):
    if a[i] == 1:
        for j in range(idx, i, 2):
            c[j] = i
        idx = i + 1
ans = 0
for i in range(n):
    ans += min(b[i], c[i]) - i
print(ans)
0