結果

問題 No.1505 Zero-Product Ranges
ユーザー 小野寺健小野寺健
提出日時 2021-05-15 00:01:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 761 ms / 2,000 ms
コード長 613 bytes
コンパイル時間 4,947 ms
コンパイル使用メモリ 77,088 KB
実行使用メモリ 63,932 KB
最終ジャッジ日時 2024-10-02 06:42:30
合計ジャッジ時間 29,415 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,064 KB
testcase_01 AC 132 ms
54,008 KB
testcase_02 AC 132 ms
54,184 KB
testcase_03 AC 663 ms
63,436 KB
testcase_04 AC 689 ms
63,236 KB
testcase_05 AC 492 ms
59,176 KB
testcase_06 AC 499 ms
59,064 KB
testcase_07 AC 422 ms
58,964 KB
testcase_08 AC 468 ms
59,136 KB
testcase_09 AC 447 ms
59,052 KB
testcase_10 AC 438 ms
59,012 KB
testcase_11 AC 454 ms
59,108 KB
testcase_12 AC 433 ms
59,100 KB
testcase_13 AC 549 ms
59,164 KB
testcase_14 AC 483 ms
59,240 KB
testcase_15 AC 672 ms
60,376 KB
testcase_16 AC 711 ms
63,696 KB
testcase_17 AC 692 ms
63,684 KB
testcase_18 AC 693 ms
63,528 KB
testcase_19 AC 131 ms
53,968 KB
testcase_20 AC 116 ms
52,888 KB
testcase_21 AC 157 ms
54,104 KB
testcase_22 AC 692 ms
63,096 KB
testcase_23 AC 706 ms
63,760 KB
testcase_24 AC 662 ms
63,932 KB
testcase_25 AC 665 ms
61,820 KB
testcase_26 AC 688 ms
62,964 KB
testcase_27 AC 682 ms
62,700 KB
testcase_28 AC 689 ms
63,032 KB
testcase_29 AC 684 ms
63,284 KB
testcase_30 AC 761 ms
60,312 KB
testcase_31 AC 679 ms
60,072 KB
testcase_32 AC 585 ms
58,896 KB
testcase_33 AC 590 ms
59,152 KB
testcase_34 AC 552 ms
59,140 KB
testcase_35 AC 508 ms
59,056 KB
testcase_36 AC 509 ms
59,220 KB
testcase_37 AC 533 ms
59,160 KB
testcase_38 AC 521 ms
59,052 KB
testcase_39 AC 542 ms
59,008 KB
testcase_40 AC 543 ms
59,284 KB
testcase_41 AC 533 ms
59,092 KB
testcase_42 AC 245 ms
57,484 KB
testcase_43 AC 275 ms
58,340 KB
testcase_44 AC 256 ms
57,944 KB
testcase_45 AC 262 ms
58,260 KB
testcase_46 AC 241 ms
57,716 KB
testcase_47 AC 311 ms
58,620 KB
testcase_48 AC 246 ms
57,272 KB
testcase_49 AC 215 ms
57,540 KB
testcase_50 AC 248 ms
57,756 KB
testcase_51 AC 264 ms
58,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No1505 {
	
	private static long nCr(int n)
	{
		if (n < 2 || n <= 0) {
			return 0L;
		}
		return (long)n * (long)(n-1) / 2L;
	}

	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int N = scan.nextInt();
		int j = -1;
		long cnt = nCr(N) + N;
		int i = 0;
		for (; i < N; i++) {
			if (scan.nextInt() == 1) {
				if (j < 0) {
					j = i;
				}
			} else {
				if (j >= 0) {
					cnt -= nCr(i-j) + (long)(i-j);
				}
				j = -1;
			}
		}
		if (j >= 0) {
			cnt -= nCr(i-j) + (long)(i-j);
		}
		scan.close();
		System.out.println(cnt);
	}
}
0