結果

問題 No.1505 Zero-Product Ranges
ユーザー 👑 KazunKazun
提出日時 2021-05-14 22:10:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 182 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 101,588 KB
最終ジャッジ日時 2024-10-02 01:27:39
合計ジャッジ時間 4,921 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,128 KB
testcase_01 AC 37 ms
52,428 KB
testcase_02 AC 37 ms
52,560 KB
testcase_03 AC 76 ms
100,356 KB
testcase_04 AC 75 ms
100,356 KB
testcase_05 AC 55 ms
75,720 KB
testcase_06 AC 55 ms
75,760 KB
testcase_07 AC 54 ms
72,464 KB
testcase_08 AC 55 ms
74,576 KB
testcase_09 AC 53 ms
72,292 KB
testcase_10 AC 54 ms
73,688 KB
testcase_11 AC 55 ms
76,680 KB
testcase_12 AC 51 ms
70,716 KB
testcase_13 AC 63 ms
84,828 KB
testcase_14 AC 61 ms
83,188 KB
testcase_15 AC 75 ms
99,280 KB
testcase_16 AC 79 ms
100,760 KB
testcase_17 AC 79 ms
101,128 KB
testcase_18 AC 78 ms
101,156 KB
testcase_19 AC 37 ms
52,188 KB
testcase_20 AC 36 ms
52,176 KB
testcase_21 AC 38 ms
52,368 KB
testcase_22 AC 79 ms
101,588 KB
testcase_23 AC 78 ms
101,384 KB
testcase_24 AC 78 ms
99,840 KB
testcase_25 AC 75 ms
96,860 KB
testcase_26 AC 76 ms
100,316 KB
testcase_27 AC 73 ms
96,400 KB
testcase_28 AC 76 ms
97,808 KB
testcase_29 AC 81 ms
101,428 KB
testcase_30 AC 79 ms
101,484 KB
testcase_31 AC 79 ms
100,336 KB
testcase_32 AC 60 ms
79,848 KB
testcase_33 AC 60 ms
80,488 KB
testcase_34 AC 63 ms
82,204 KB
testcase_35 AC 56 ms
76,032 KB
testcase_36 AC 58 ms
77,492 KB
testcase_37 AC 60 ms
79,860 KB
testcase_38 AC 60 ms
79,628 KB
testcase_39 AC 60 ms
79,716 KB
testcase_40 AC 59 ms
80,056 KB
testcase_41 AC 62 ms
83,084 KB
testcase_42 AC 45 ms
61,964 KB
testcase_43 AC 47 ms
63,732 KB
testcase_44 AC 45 ms
62,416 KB
testcase_45 AC 44 ms
64,120 KB
testcase_46 AC 43 ms
61,760 KB
testcase_47 AC 48 ms
64,280 KB
testcase_48 AC 43 ms
62,128 KB
testcase_49 AC 42 ms
61,068 KB
testcase_50 AC 44 ms
63,200 KB
testcase_51 AC 44 ms
64,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))+[0]

X=N*(N+1)//2
chain=0
for a in A:
    if a==1:
        chain+=1
    else:
        X-=chain*(chain+1)//2
        chain=0

print(X)
0