結果

問題 No.1505 Zero-Product Ranges
ユーザー ks2mks2m
提出日時 2021-05-14 22:08:27
言語 Java
(openjdk 23)
結果
AC  
実行時間 722 ms / 2,000 ms
コード長 525 bytes
コンパイル時間 2,205 ms
コンパイル使用メモリ 74,828 KB
実行使用メモリ 63,956 KB
最終ジャッジ日時 2024-10-02 01:23:21
合計ジャッジ時間 28,061 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
53,768 KB
testcase_01 AC 129 ms
53,972 KB
testcase_02 AC 130 ms
54,152 KB
testcase_03 AC 709 ms
63,956 KB
testcase_04 AC 722 ms
63,708 KB
testcase_05 AC 487 ms
59,024 KB
testcase_06 AC 489 ms
59,312 KB
testcase_07 AC 432 ms
59,132 KB
testcase_08 AC 485 ms
59,060 KB
testcase_09 AC 456 ms
58,952 KB
testcase_10 AC 457 ms
59,200 KB
testcase_11 AC 508 ms
59,244 KB
testcase_12 AC 441 ms
59,084 KB
testcase_13 AC 570 ms
59,128 KB
testcase_14 AC 549 ms
61,372 KB
testcase_15 AC 667 ms
62,992 KB
testcase_16 AC 676 ms
63,428 KB
testcase_17 AC 709 ms
63,628 KB
testcase_18 AC 653 ms
63,628 KB
testcase_19 AC 128 ms
53,944 KB
testcase_20 AC 132 ms
54,060 KB
testcase_21 AC 149 ms
53,988 KB
testcase_22 AC 698 ms
63,452 KB
testcase_23 AC 680 ms
61,052 KB
testcase_24 AC 671 ms
63,456 KB
testcase_25 AC 628 ms
63,684 KB
testcase_26 AC 670 ms
62,844 KB
testcase_27 AC 670 ms
63,564 KB
testcase_28 AC 688 ms
63,468 KB
testcase_29 AC 662 ms
61,156 KB
testcase_30 AC 688 ms
63,540 KB
testcase_31 AC 657 ms
62,928 KB
testcase_32 AC 462 ms
57,824 KB
testcase_33 AC 489 ms
59,160 KB
testcase_34 AC 540 ms
59,400 KB
testcase_35 AC 504 ms
59,084 KB
testcase_36 AC 498 ms
59,128 KB
testcase_37 AC 579 ms
59,340 KB
testcase_38 AC 512 ms
59,256 KB
testcase_39 AC 533 ms
58,976 KB
testcase_40 AC 536 ms
59,080 KB
testcase_41 AC 564 ms
59,328 KB
testcase_42 AC 236 ms
57,632 KB
testcase_43 AC 264 ms
58,392 KB
testcase_44 AC 258 ms
58,132 KB
testcase_45 AC 256 ms
58,032 KB
testcase_46 AC 232 ms
57,516 KB
testcase_47 AC 281 ms
58,580 KB
testcase_48 AC 230 ms
58,156 KB
testcase_49 AC 212 ms
57,232 KB
testcase_50 AC 240 ms
57,520 KB
testcase_51 AC 265 ms
58,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[] a = new int[n];
		for (int i = 0; i < n; i++) {
			a[i] = sc.nextInt();
		}
		sc.close();

		long ans = (long) n * (n + 1) / 2;
		int cnt = 0;
		for (int i = 0; i < n; i++) {
			if (a[i] == 1) {
				cnt++;
			} else {
				ans -= (long) cnt * (cnt + 1) / 2;
				cnt = 0;
			}
		}
		ans -= (long) cnt * (cnt + 1) / 2;
		System.out.println(ans);
	}
}
0