結果

問題 No.1505 Zero-Product Ranges
ユーザー Super SolenoidSuper Solenoid
提出日時 2021-05-18 15:38:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 299 bytes
コンパイル時間 1,459 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 100,096 KB
最終ジャッジ日時 2024-10-08 16:07:00
合計ジャッジ時間 7,540 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,712 KB
testcase_01 AC 35 ms
51,712 KB
testcase_02 AC 35 ms
51,840 KB
testcase_03 AC 85 ms
96,256 KB
testcase_04 AC 71 ms
96,256 KB
testcase_05 AC 55 ms
74,752 KB
testcase_06 AC 53 ms
74,112 KB
testcase_07 AC 50 ms
70,912 KB
testcase_08 AC 52 ms
72,832 KB
testcase_09 AC 50 ms
71,424 KB
testcase_10 AC 52 ms
71,936 KB
testcase_11 AC 54 ms
75,008 KB
testcase_12 AC 49 ms
69,376 KB
testcase_13 AC 63 ms
83,200 KB
testcase_14 AC 59 ms
80,128 KB
testcase_15 AC 72 ms
96,640 KB
testcase_16 AC 78 ms
99,456 KB
testcase_17 AC 79 ms
100,096 KB
testcase_18 AC 77 ms
99,200 KB
testcase_19 AC 36 ms
51,712 KB
testcase_20 AC 36 ms
51,712 KB
testcase_21 AC 35 ms
51,968 KB
testcase_22 AC 77 ms
99,200 KB
testcase_23 AC 79 ms
99,200 KB
testcase_24 AC 79 ms
99,328 KB
testcase_25 AC 76 ms
95,872 KB
testcase_26 AC 77 ms
98,560 KB
testcase_27 AC 75 ms
96,256 KB
testcase_28 AC 75 ms
95,488 KB
testcase_29 AC 78 ms
99,200 KB
testcase_30 AC 78 ms
99,712 KB
testcase_31 AC 78 ms
99,328 KB
testcase_32 AC 62 ms
80,512 KB
testcase_33 AC 63 ms
79,360 KB
testcase_34 AC 65 ms
81,920 KB
testcase_35 AC 57 ms
76,160 KB
testcase_36 AC 58 ms
77,312 KB
testcase_37 AC 61 ms
80,000 KB
testcase_38 AC 61 ms
79,744 KB
testcase_39 AC 61 ms
80,000 KB
testcase_40 AC 60 ms
79,872 KB
testcase_41 AC 61 ms
82,432 KB
testcase_42 AC 46 ms
62,976 KB
testcase_43 AC 46 ms
63,744 KB
testcase_44 AC 44 ms
63,488 KB
testcase_45 AC 45 ms
64,640 KB
testcase_46 AC 44 ms
63,232 KB
testcase_47 AC 48 ms
64,896 KB
testcase_48 AC 45 ms
63,232 KB
testcase_49 AC 46 ms
62,208 KB
testcase_50 AC 50 ms
64,000 KB
testcase_51 AC 47 ms
64,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
a.append(0)

s = a[0]
k = 0
nc = 0

for i in range(n + 1):
    if s == 0 and a[i] == 0:
        nc += (i - k)*(i - k + 1)/2
        s = 1
        continue
    if s == 1 and a[i] == 1:
        k = i
        s = 0

print(int(n * (n + 1) / 2 - nc)) 
0