結果
| 問題 |
No.1505 Zero-Product Ranges
|
| コンテスト | |
| ユーザー |
c-yan
|
| 提出日時 | 2021-05-16 06:13:17 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 58 ms / 2,000 ms |
| コード長 | 127 bytes |
| コンパイル時間 | 205 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 13,680 KB |
| 最終ジャッジ日時 | 2024-10-04 06:25:14 |
| 合計ジャッジ時間 | 4,626 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 49 |
ソースコード
N = int(input())
A = input().replace(' ', '').split('0')
print((N + 1) * N // 2 - sum((len(s) + 1) * len(s) // 2 for s in A))
c-yan