結果

問題 No.1765 While Shining
ユーザー notsix4notsix4
提出日時 2021-11-26 23:09:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 415 bytes
コンパイル時間 82 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 20,112 KB
最終ジャッジ日時 2024-06-29 18:30:47
合計ジャッジ時間 8,634 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
16,128 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 28 ms
10,624 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 28 ms
10,752 KB
testcase_07 AC 29 ms
10,624 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 205 ms
13,112 KB
testcase_10 AC 294 ms
13,724 KB
testcase_11 AC 255 ms
13,812 KB
testcase_12 AC 274 ms
13,652 KB
testcase_13 AC 251 ms
13,728 KB
testcase_14 AC 310 ms
14,484 KB
testcase_15 AC 295 ms
14,608 KB
testcase_16 AC 301 ms
14,484 KB
testcase_17 AC 317 ms
14,568 KB
testcase_18 AC 304 ms
14,612 KB
testcase_19 AC 310 ms
14,480 KB
testcase_20 AC 312 ms
14,484 KB
testcase_21 AC 303 ms
14,612 KB
testcase_22 AC 301 ms
14,488 KB
testcase_23 AC 301 ms
14,612 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
for j in range(n-1):
    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