結果

問題 No.1505 Zero-Product Ranges
ユーザー tentententen
提出日時 2024-07-04 14:38:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 231 ms / 2,000 ms
コード長 1,548 bytes
コンパイル時間 1,998 ms
コンパイル使用メモリ 78,976 KB
実行使用メモリ 50,096 KB
最終ジャッジ日時 2024-07-04 14:38:29
合計ジャッジ時間 11,996 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
36,776 KB
testcase_01 AC 44 ms
36,636 KB
testcase_02 AC 45 ms
36,996 KB
testcase_03 AC 190 ms
44,860 KB
testcase_04 AC 217 ms
49,684 KB
testcase_05 AC 153 ms
43,512 KB
testcase_06 AC 134 ms
43,120 KB
testcase_07 AC 116 ms
41,680 KB
testcase_08 AC 130 ms
42,840 KB
testcase_09 AC 135 ms
42,700 KB
testcase_10 AC 153 ms
44,224 KB
testcase_11 AC 161 ms
45,032 KB
testcase_12 AC 134 ms
44,572 KB
testcase_13 AC 194 ms
46,864 KB
testcase_14 AC 191 ms
46,816 KB
testcase_15 AC 231 ms
50,096 KB
testcase_16 AC 193 ms
46,660 KB
testcase_17 AC 201 ms
46,260 KB
testcase_18 AC 207 ms
46,736 KB
testcase_19 AC 48 ms
36,740 KB
testcase_20 AC 47 ms
36,860 KB
testcase_21 AC 45 ms
37,044 KB
testcase_22 AC 210 ms
46,532 KB
testcase_23 AC 211 ms
46,608 KB
testcase_24 AC 208 ms
46,520 KB
testcase_25 AC 195 ms
46,364 KB
testcase_26 AC 207 ms
46,480 KB
testcase_27 AC 211 ms
46,484 KB
testcase_28 AC 215 ms
46,688 KB
testcase_29 AC 219 ms
46,500 KB
testcase_30 AC 202 ms
46,836 KB
testcase_31 AC 215 ms
46,080 KB
testcase_32 AC 170 ms
44,168 KB
testcase_33 AC 172 ms
44,748 KB
testcase_34 AC 184 ms
46,080 KB
testcase_35 AC 145 ms
43,888 KB
testcase_36 AC 162 ms
44,060 KB
testcase_37 AC 176 ms
44,072 KB
testcase_38 AC 152 ms
43,692 KB
testcase_39 AC 149 ms
43,708 KB
testcase_40 AC 163 ms
45,232 KB
testcase_41 AC 177 ms
46,172 KB
testcase_42 AC 99 ms
39,140 KB
testcase_43 AC 100 ms
39,708 KB
testcase_44 AC 97 ms
39,520 KB
testcase_45 AC 102 ms
39,536 KB
testcase_46 AC 94 ms
39,292 KB
testcase_47 AC 102 ms
39,860 KB
testcase_48 AC 102 ms
39,332 KB
testcase_49 AC 74 ms
38,268 KB
testcase_50 AC 91 ms
39,468 KB
testcase_51 AC 104 ms
39,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        List<Integer> zeros = new ArrayList<>();
        for (int i = 0; i < n; i++) {
            if (sc.nextInt() == 0) {
                zeros.add(i);
            }
        }
        zeros.add(n);
        long ans = n * (n + 1L) / 2;
        int prev = -1;
        for (int x : zeros) {
            long length = x - prev - 1;
            ans -= length * (length + 1) / 2;
            prev = x;
        }
        System.out.println(ans);
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}


0