結果

問題 No.1505 Zero-Product Ranges
ユーザー mesame3993mesame3993
提出日時 2021-09-30 01:00:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 323 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 116,968 KB
最終ジャッジ日時 2024-07-17 03:36:15
合計ジャッジ時間 5,110 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,940 KB
testcase_01 AC 37 ms
52,136 KB
testcase_02 AC 36 ms
53,032 KB
testcase_03 AC 72 ms
97,372 KB
testcase_04 WA -
testcase_05 AC 56 ms
75,812 KB
testcase_06 AC 56 ms
76,728 KB
testcase_07 AC 52 ms
72,456 KB
testcase_08 AC 55 ms
74,112 KB
testcase_09 AC 54 ms
72,660 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 87 ms
116,112 KB
testcase_16 AC 88 ms
110,012 KB
testcase_17 AC 88 ms
108,848 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 36 ms
53,072 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 87 ms
107,932 KB
testcase_24 AC 86 ms
107,984 KB
testcase_25 AC 84 ms
103,720 KB
testcase_26 AC 86 ms
107,972 KB
testcase_27 AC 85 ms
106,012 KB
testcase_28 AC 85 ms
106,248 KB
testcase_29 WA -
testcase_30 AC 88 ms
108,376 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 67 ms
87,420 KB
testcase_35 AC 62 ms
80,352 KB
testcase_36 AC 63 ms
83,092 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 66 ms
84,608 KB
testcase_40 AC 66 ms
86,636 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 49 ms
67,508 KB
testcase_44 AC 48 ms
65,116 KB
testcase_45 AC 48 ms
65,388 KB
testcase_46 WA -
testcase_47 WA -
testcase_48 AC 48 ms
64,588 KB
testcase_49 WA -
testcase_50 AC 47 ms
66,388 KB
testcase_51 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

li0 = [x for x in range(n) if a[x] == 0]
li0 = list(reversed(li0))
ans = 0

if 0 not in a:
	print(0)
	exit()
for i in range(n-1):
	if a[i] == 0:
		ans += n - i
		if i >= li0[-1]:
			li0.pop()
	else:
		if len(li0) == 0:
			break
		ans += n - i - (li0[-1]-i)		
print(ans)
0