結果

問題 No.1036 Make One With GCD 2
ユーザー ks2mks2m
提出日時 2020-04-24 22:35:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,471 ms / 2,000 ms
コード長 1,009 bytes
コンパイル時間 2,886 ms
コンパイル使用メモリ 76,564 KB
実行使用メモリ 151,068 KB
最終ジャッジ日時 2024-09-16 13:24:55
合計ジャッジ時間 38,219 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 793 ms
144,480 KB
testcase_01 AC 1,469 ms
143,040 KB
testcase_02 AC 869 ms
142,908 KB
testcase_03 AC 559 ms
81,424 KB
testcase_04 AC 533 ms
99,028 KB
testcase_05 AC 52 ms
36,764 KB
testcase_06 AC 52 ms
36,660 KB
testcase_07 AC 722 ms
87,688 KB
testcase_08 AC 636 ms
75,676 KB
testcase_09 AC 857 ms
131,400 KB
testcase_10 AC 825 ms
127,148 KB
testcase_11 AC 892 ms
151,068 KB
testcase_12 AC 826 ms
128,176 KB
testcase_13 AC 1,422 ms
140,428 KB
testcase_14 AC 1,426 ms
140,984 KB
testcase_15 AC 1,408 ms
143,544 KB
testcase_16 AC 1,419 ms
144,096 KB
testcase_17 AC 1,392 ms
139,060 KB
testcase_18 AC 75 ms
38,404 KB
testcase_19 AC 86 ms
38,912 KB
testcase_20 AC 121 ms
40,712 KB
testcase_21 AC 120 ms
40,324 KB
testcase_22 AC 1,367 ms
142,112 KB
testcase_23 AC 1,188 ms
117,576 KB
testcase_24 AC 1,365 ms
138,068 KB
testcase_25 AC 1,334 ms
134,580 KB
testcase_26 AC 1,383 ms
137,108 KB
testcase_27 AC 52 ms
37,076 KB
testcase_28 AC 51 ms
36,968 KB
testcase_29 AC 51 ms
36,776 KB
testcase_30 AC 53 ms
36,724 KB
testcase_31 AC 55 ms
37,472 KB
testcase_32 AC 55 ms
36,992 KB
testcase_33 AC 53 ms
36,764 KB
testcase_34 AC 55 ms
37,328 KB
testcase_35 AC 52 ms
36,764 KB
testcase_36 AC 53 ms
36,860 KB
testcase_37 AC 53 ms
36,968 KB
testcase_38 AC 847 ms
144,228 KB
testcase_39 AC 820 ms
144,936 KB
testcase_40 AC 1,182 ms
118,016 KB
testcase_41 AC 1,325 ms
144,756 KB
testcase_42 AC 1,288 ms
144,564 KB
testcase_43 AC 1,438 ms
144,892 KB
testcase_44 AC 1,471 ms
145,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.math.BigInteger;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int n = Integer.parseInt(br.readLine());
		String[] sa = br.readLine().split(" ");
		BigInteger[] a = new BigInteger[n];
		for (int i = 0; i < n; i++) {
			a[i] = new BigInteger(sa[i]);
		}
		br.close();

		long ans = 0;
		BigInteger now = BigInteger.ZERO;
		int l = 0;
		for (int r = 0; r < n; r++) {
			now = now.gcd(a[r]);
			if (now.compareTo(BigInteger.ONE) == 0) {
				BigInteger now2 = a[r];
				for (int k = r; k >= l; k--) {
					BigInteger next = now2.gcd(a[k]);
					if (next.compareTo(BigInteger.ONE) == 0) {
						ans += (long) (n - r) * (k - l + 1);
						l = k + 1;
						if (l > r) {
							now = BigInteger.ZERO;
						} else {
							now = now2;
						}
						break;
					}
					now2 = next;
				}
			}
		}
		System.out.println(ans);
	}
}
0