結果

問題 No.1505 Zero-Product Ranges
ユーザー lllllll88938494lllllll88938494
提出日時 2022-01-11 19:58:34
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 316 bytes
コンパイル時間 385 ms
コンパイル使用メモリ 82,064 KB
実行使用メモリ 208,352 KB
最終ジャッジ日時 2024-11-14 12:15:12
合計ジャッジ時間 105,595 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
60,928 KB
testcase_01 AC 40 ms
158,816 KB
testcase_02 AC 39 ms
60,172 KB
testcase_03 TLE -
testcase_04 AC 99 ms
111,552 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 307 ms
91,096 KB
testcase_11 AC 484 ms
190,088 KB
testcase_12 AC 249 ms
88,976 KB
testcase_13 AC 946 ms
197,048 KB
testcase_14 AC 707 ms
97,348 KB
testcase_15 AC 108 ms
208,352 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 41 ms
158,820 KB
testcase_20 AC 40 ms
60,440 KB
testcase_21 AC 46 ms
166,700 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 AC 836 ms
76,700 KB
testcase_43 TLE -
testcase_44 AC 1,433 ms
76,880 KB
testcase_45 AC 1,693 ms
76,888 KB
testcase_46 AC 684 ms
76,524 KB
testcase_47 TLE -
testcase_48 AC 964 ms
76,624 KB
testcase_49 AC 217 ms
76,880 KB
testcase_50 AC 1,096 ms
76,764 KB
testcase_51 AC 1,676 ms
174,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

n=int(input())
ns=list(map(int,input().split()))
ans=0

for i in range(n):
    dic= defaultdict(int)
    dic[ns[i]] += 1
    if ns[i] == 0:
        ans += n-i
        continue
    for j in range(i,n):
        dic[ns[j]] += 1
        if dic[0] > 0:
            ans+=1

print(ans)
0