結果
| 問題 | 
                            No.1505 Zero-Product Ranges
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2022-01-02 17:55:41 | 
| 言語 | PyPy3  (7.3.15)  | 
                    
| 結果 | 
                             
                                TLE
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 281 bytes | 
| コンパイル時間 | 161 ms | 
| コンパイル使用メモリ | 82,248 KB | 
| 実行使用メモリ | 258,072 KB | 
| 最終ジャッジ日時 | 2024-10-11 21:43:22 | 
| 合計ジャッジ時間 | 4,088 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge2 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 1 TLE * 1 -- * 47 | 
ソースコード
N = int(input())
A = input().replace(' ', '')
all = N * (N + 1) // 2
i = N
onecnt = 0
while i > 0:
    o = A.count('1' * i)
    if o > 0:
        onecnt += (i * (i + 1) // 2) * o
        A = A.replace('1' * i, '')
        i = len(A)
    else:
        i -= 1
print(all - onecnt)