結果

問題 No.1505 Zero-Product Ranges
ユーザー tentententen
提出日時 2021-05-17 09:04:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 218 ms / 2,000 ms
コード長 1,095 bytes
コンパイル時間 2,320 ms
コンパイル使用メモリ 74,656 KB
実行使用メモリ 45,052 KB
最終ジャッジ日時 2024-10-06 03:37:47
合計ジャッジ時間 12,703 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
37,084 KB
testcase_01 AC 55 ms
37,228 KB
testcase_02 AC 54 ms
37,120 KB
testcase_03 AC 215 ms
44,784 KB
testcase_04 AC 207 ms
45,008 KB
testcase_05 AC 154 ms
43,196 KB
testcase_06 AC 154 ms
43,408 KB
testcase_07 AC 125 ms
41,668 KB
testcase_08 AC 136 ms
42,704 KB
testcase_09 AC 123 ms
42,252 KB
testcase_10 AC 150 ms
42,656 KB
testcase_11 AC 151 ms
43,060 KB
testcase_12 AC 127 ms
41,468 KB
testcase_13 AC 173 ms
43,408 KB
testcase_14 AC 165 ms
44,320 KB
testcase_15 AC 214 ms
44,884 KB
testcase_16 AC 210 ms
44,372 KB
testcase_17 AC 197 ms
44,900 KB
testcase_18 AC 217 ms
44,996 KB
testcase_19 AC 54 ms
37,120 KB
testcase_20 AC 55 ms
36,896 KB
testcase_21 AC 54 ms
36,984 KB
testcase_22 AC 218 ms
44,804 KB
testcase_23 AC 203 ms
44,860 KB
testcase_24 AC 195 ms
44,984 KB
testcase_25 AC 212 ms
44,848 KB
testcase_26 AC 206 ms
44,868 KB
testcase_27 AC 176 ms
44,688 KB
testcase_28 AC 204 ms
45,052 KB
testcase_29 AC 194 ms
44,972 KB
testcase_30 AC 197 ms
44,752 KB
testcase_31 AC 202 ms
44,828 KB
testcase_32 AC 180 ms
44,588 KB
testcase_33 AC 174 ms
44,416 KB
testcase_34 AC 162 ms
43,388 KB
testcase_35 AC 168 ms
43,364 KB
testcase_36 AC 168 ms
43,232 KB
testcase_37 AC 155 ms
43,236 KB
testcase_38 AC 171 ms
44,420 KB
testcase_39 AC 155 ms
44,436 KB
testcase_40 AC 176 ms
43,220 KB
testcase_41 AC 176 ms
43,276 KB
testcase_42 AC 99 ms
39,292 KB
testcase_43 AC 104 ms
39,916 KB
testcase_44 AC 102 ms
39,488 KB
testcase_45 AC 102 ms
39,380 KB
testcase_46 AC 87 ms
39,040 KB
testcase_47 AC 103 ms
39,812 KB
testcase_48 AC 99 ms
39,212 KB
testcase_49 AC 90 ms
38,644 KB
testcase_50 AC 91 ms
39,164 KB
testcase_51 AC 91 ms
39,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int zero = 0;
        long ans = 0;
        for (int i = 1; i <= n; i++) {
            int x = sc.nextInt();
            if (x == 0) {
                ans += zero * (long)(i - zero);
                zero = i;
            }
        }
        ans += zero * (long)(n + 1 - zero);
        System.out.println(ans);
    }
}

class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0