結果

問題 No.1765 While Shining
ユーザー notsix4notsix4
提出日時 2021-11-26 23:15:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 466 bytes
コンパイル時間 102 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 24,904 KB
最終ジャッジ日時 2024-06-29 18:32:35
合計ジャッジ時間 7,581 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
16,128 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 26 ms
10,880 KB
testcase_04 AC 24 ms
10,752 KB
testcase_05 AC 24 ms
10,752 KB
testcase_06 AC 24 ms
10,752 KB
testcase_07 AC 24 ms
10,624 KB
testcase_08 AC 26 ms
10,752 KB
testcase_09 AC 158 ms
15,440 KB
testcase_10 AC 234 ms
17,196 KB
testcase_11 AC 210 ms
16,608 KB
testcase_12 AC 221 ms
16,868 KB
testcase_13 AC 200 ms
16,492 KB
testcase_14 AC 243 ms
18,092 KB
testcase_15 AC 244 ms
18,092 KB
testcase_16 AC 246 ms
18,096 KB
testcase_17 AC 251 ms
17,968 KB
testcase_18 AC 246 ms
17,964 KB
testcase_19 AC 243 ms
18,220 KB
testcase_20 AC 245 ms
18,092 KB
testcase_21 AC 249 ms
18,096 KB
testcase_22 AC 238 ms
18,220 KB
testcase_23 AC 239 ms
18,092 KB
testcase_24 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
l=list(map(int,input().split()))
c=0
nl=[]
for i in l:
    if i==1:
        nl.append(0)
    else:
        nl.append(1)
ml=l
d=0
K=[]
for i in range(n):
    if l[i]==1:
        K.append(i)
for j in K:
    for i in range(n-1):
        if l[j+i]==1 and j+i<n-1:
            c+=1
            if c%2==1:
                l=nl
            else:
                l=ml
        else:
            d+=c
            c=0
            l=ml
            break
print(d)
0