結果

問題 No.1765 While Shining
ユーザー アナスタシアアナスタシア
提出日時 2021-12-06 21:50:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 403 bytes
コンパイル時間 75 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 13,888 KB
最終ジャッジ日時 2024-07-07 09:33:31
合計ジャッジ時間 2,995 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
10,624 KB
testcase_01 AC 25 ms
10,624 KB
testcase_02 AC 25 ms
10,624 KB
testcase_03 AC 24 ms
10,624 KB
testcase_04 AC 23 ms
10,752 KB
testcase_05 AC 23 ms
10,496 KB
testcase_06 AC 23 ms
10,752 KB
testcase_07 AC 23 ms
10,752 KB
testcase_08 AC 24 ms
10,624 KB
testcase_09 AC 73 ms
12,916 KB
testcase_10 AC 99 ms
13,888 KB
testcase_11 AC 91 ms
13,456 KB
testcase_12 AC 92 ms
13,564 KB
testcase_13 AC 87 ms
13,428 KB
testcase_14 AC 114 ms
13,888 KB
testcase_15 AC 120 ms
13,888 KB
testcase_16 AC 115 ms
13,756 KB
testcase_17 AC 101 ms
13,888 KB
testcase_18 AC 109 ms
13,760 KB
testcase_19 AC 104 ms
13,860 KB
testcase_20 AC 103 ms
13,760 KB
testcase_21 AC 107 ms
13,884 KB
testcase_22 AC 102 ms
13,756 KB
testcase_23 AC 103 ms
13,764 KB
testcase_24 AC 105 ms
13,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N = int(input())
As = list(map(int, input().split()))

total, value = 0, 0
target = 1

for a in As[:-1]:
    if a == 1:
        if target == 1:
            value += 1
            target = 0
        else:
            value = 1
    else:
        if target == 0:
            pass
        else:
            value = 0
        target = 1
    total += value

print(total)
0