結果

問題 No.1505 Zero-Product Ranges
ユーザー 👑 KazunKazun
提出日時 2021-05-14 22:09:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 178 bytes
コンパイル時間 351 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 97,664 KB
最終ジャッジ日時 2024-10-02 01:24:28
合計ジャッジ時間 4,988 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 78 ms
96,384 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 52 ms
71,808 KB
testcase_11 AC 53 ms
73,984 KB
testcase_12 AC 50 ms
68,864 KB
testcase_13 AC 60 ms
82,048 KB
testcase_14 AC 60 ms
79,360 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 76 ms
97,536 KB
testcase_19 AC 37 ms
51,712 KB
testcase_20 WA -
testcase_21 AC 38 ms
51,840 KB
testcase_22 AC 75 ms
96,896 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 76 ms
96,896 KB
testcase_30 WA -
testcase_31 AC 75 ms
96,512 KB
testcase_32 AC 58 ms
78,464 KB
testcase_33 AC 59 ms
78,208 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 57 ms
78,464 KB
testcase_38 AC 57 ms
77,312 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 60 ms
80,496 KB
testcase_42 AC 45 ms
61,312 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 44 ms
60,672 KB
testcase_47 AC 47 ms
62,720 KB
testcase_48 WA -
testcase_49 AC 43 ms
59,776 KB
testcase_50 WA -
testcase_51 AC 44 ms
62,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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