結果

問題 No.1505 Zero-Product Ranges
ユーザー lllllll88938494lllllll88938494
提出日時 2022-01-12 00:27:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 309 bytes
コンパイル時間 511 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 103,520 KB
最終ジャッジ日時 2024-11-14 12:19:38
合計ジャッジ時間 5,324 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,812 KB
testcase_01 AC 37 ms
52,500 KB
testcase_02 AC 38 ms
53,220 KB
testcase_03 AC 76 ms
97,260 KB
testcase_04 AC 73 ms
96,580 KB
testcase_05 AC 54 ms
74,580 KB
testcase_06 AC 55 ms
76,032 KB
testcase_07 AC 51 ms
70,956 KB
testcase_08 AC 53 ms
72,536 KB
testcase_09 AC 52 ms
71,704 KB
testcase_10 AC 55 ms
73,108 KB
testcase_11 AC 57 ms
74,912 KB
testcase_12 AC 51 ms
70,128 KB
testcase_13 AC 63 ms
84,388 KB
testcase_14 AC 62 ms
81,016 KB
testcase_15 AC 73 ms
96,508 KB
testcase_16 AC 82 ms
102,844 KB
testcase_17 AC 82 ms
102,752 KB
testcase_18 AC 82 ms
103,224 KB
testcase_19 AC 38 ms
52,480 KB
testcase_20 AC 37 ms
52,392 KB
testcase_21 AC 39 ms
52,684 KB
testcase_22 AC 83 ms
103,520 KB
testcase_23 AC 82 ms
102,032 KB
testcase_24 AC 82 ms
101,472 KB
testcase_25 AC 79 ms
97,840 KB
testcase_26 AC 82 ms
103,248 KB
testcase_27 AC 79 ms
97,896 KB
testcase_28 AC 78 ms
99,396 KB
testcase_29 AC 81 ms
102,368 KB
testcase_30 AC 81 ms
102,944 KB
testcase_31 AC 80 ms
102,688 KB
testcase_32 AC 64 ms
82,836 KB
testcase_33 AC 61 ms
81,548 KB
testcase_34 AC 67 ms
83,524 KB
testcase_35 AC 60 ms
78,576 KB
testcase_36 AC 60 ms
79,068 KB
testcase_37 AC 63 ms
82,488 KB
testcase_38 AC 62 ms
81,404 KB
testcase_39 AC 64 ms
81,940 KB
testcase_40 AC 65 ms
81,660 KB
testcase_41 AC 66 ms
84,884 KB
testcase_42 AC 47 ms
63,420 KB
testcase_43 AC 46 ms
65,884 KB
testcase_44 AC 47 ms
65,492 KB
testcase_45 AC 46 ms
63,996 KB
testcase_46 AC 47 ms
63,008 KB
testcase_47 AC 48 ms
65,744 KB
testcase_48 AC 47 ms
63,440 KB
testcase_49 AC 47 ms
62,508 KB
testcase_50 AC 46 ms
63,472 KB
testcase_51 AC 46 ms
63,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
ns=list(map(int,input().split()))
s=0
box=[]
for i in range(n):
    if ns[i] == 1:
        s += 1
        if i == n-1:
            box.append(s)
    else:
        if s > 0:
            box.append(s)
        s=0
h=0
for i in box:
    h += (i+1)*i // 2
    
total = (n+1)*n // 2

print(total-h)

0