結果

問題 No.1505 Zero-Product Ranges
ユーザー ireenaireena
提出日時 2022-02-21 10:53:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 154 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 96,512 KB
最終ジャッジ日時 2024-06-29 15:06:08
合計ジャッジ時間 5,051 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
51,968 KB
testcase_01 AC 32 ms
51,840 KB
testcase_02 AC 31 ms
52,224 KB
testcase_03 AC 65 ms
95,488 KB
testcase_04 AC 105 ms
91,520 KB
testcase_05 AC 46 ms
71,808 KB
testcase_06 AC 44 ms
71,168 KB
testcase_07 AC 42 ms
68,736 KB
testcase_08 AC 43 ms
70,144 KB
testcase_09 AC 43 ms
69,632 KB
testcase_10 AC 53 ms
71,168 KB
testcase_11 AC 65 ms
77,824 KB
testcase_12 AC 52 ms
67,200 KB
testcase_13 AC 84 ms
82,580 KB
testcase_14 AC 80 ms
81,364 KB
testcase_15 AC 107 ms
91,136 KB
testcase_16 AC 105 ms
96,384 KB
testcase_17 AC 107 ms
96,256 KB
testcase_18 AC 109 ms
96,416 KB
testcase_19 AC 39 ms
51,968 KB
testcase_20 AC 38 ms
51,968 KB
testcase_21 AC 34 ms
51,840 KB
testcase_22 AC 99 ms
96,512 KB
testcase_23 AC 98 ms
96,464 KB
testcase_24 AC 99 ms
95,744 KB
testcase_25 AC 97 ms
93,952 KB
testcase_26 AC 95 ms
95,744 KB
testcase_27 AC 96 ms
94,080 KB
testcase_28 AC 93 ms
94,376 KB
testcase_29 AC 101 ms
96,240 KB
testcase_30 AC 99 ms
96,256 KB
testcase_31 AC 98 ms
95,744 KB
testcase_32 AC 77 ms
84,992 KB
testcase_33 AC 80 ms
85,248 KB
testcase_34 AC 81 ms
86,272 KB
testcase_35 AC 69 ms
83,328 KB
testcase_36 AC 69 ms
84,096 KB
testcase_37 AC 77 ms
85,016 KB
testcase_38 AC 70 ms
85,120 KB
testcase_39 AC 74 ms
84,864 KB
testcase_40 AC 72 ms
85,376 KB
testcase_41 AC 77 ms
86,904 KB
testcase_42 AC 45 ms
65,024 KB
testcase_43 AC 49 ms
67,584 KB
testcase_44 AC 43 ms
65,664 KB
testcase_45 AC 45 ms
65,920 KB
testcase_46 AC 44 ms
63,232 KB
testcase_47 AC 45 ms
67,072 KB
testcase_48 AC 43 ms
64,640 KB
testcase_49 AC 40 ms
61,952 KB
testcase_50 AC 45 ms
66,048 KB
testcase_51 AC 44 ms
65,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import groupby;N = int(input());print(N*(N+1)//2 - sum([(l:=len([*g]))*(l+1)//2 for v, g in groupby(map(int, input().split())) if v == 1]))
0