結果

問題 No.1036 Make One With GCD 2
ユーザー ks2mks2m
提出日時 2020-04-24 22:32:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,292 ms / 2,000 ms
コード長 1,011 bytes
コンパイル時間 3,026 ms
コンパイル使用メモリ 77,296 KB
実行使用メモリ 112,672 KB
最終ジャッジ日時 2024-09-16 13:23:02
合計ジャッジ時間 34,838 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 640 ms
107,684 KB
testcase_01 AC 1,285 ms
104,288 KB
testcase_02 AC 547 ms
109,524 KB
testcase_03 AC 385 ms
61,604 KB
testcase_04 AC 425 ms
70,240 KB
testcase_05 AC 52 ms
37,088 KB
testcase_06 AC 52 ms
36,900 KB
testcase_07 AC 507 ms
67,340 KB
testcase_08 AC 486 ms
60,748 KB
testcase_09 AC 758 ms
101,628 KB
testcase_10 AC 749 ms
98,284 KB
testcase_11 AC 734 ms
101,824 KB
testcase_12 AC 756 ms
99,116 KB
testcase_13 AC 1,292 ms
106,656 KB
testcase_14 AC 1,239 ms
107,084 KB
testcase_15 AC 1,239 ms
112,052 KB
testcase_16 AC 1,243 ms
112,672 KB
testcase_17 AC 1,254 ms
106,040 KB
testcase_18 AC 81 ms
39,020 KB
testcase_19 AC 86 ms
39,400 KB
testcase_20 AC 114 ms
40,364 KB
testcase_21 AC 108 ms
40,620 KB
testcase_22 AC 1,226 ms
111,276 KB
testcase_23 AC 1,067 ms
87,336 KB
testcase_24 AC 1,263 ms
105,148 KB
testcase_25 AC 1,186 ms
108,968 KB
testcase_26 AC 1,245 ms
110,452 KB
testcase_27 AC 54 ms
37,248 KB
testcase_28 AC 53 ms
37,196 KB
testcase_29 AC 51 ms
37,320 KB
testcase_30 AC 53 ms
37,136 KB
testcase_31 AC 54 ms
37,428 KB
testcase_32 AC 57 ms
37,424 KB
testcase_33 AC 54 ms
37,012 KB
testcase_34 AC 56 ms
37,428 KB
testcase_35 AC 53 ms
36,936 KB
testcase_36 AC 53 ms
36,820 KB
testcase_37 AC 53 ms
37,052 KB
testcase_38 AC 577 ms
108,608 KB
testcase_39 AC 627 ms
110,220 KB
testcase_40 AC 1,068 ms
87,612 KB
testcase_41 AC 1,056 ms
108,988 KB
testcase_42 AC 1,026 ms
109,112 KB
testcase_43 AC 1,057 ms
108,464 KB
testcase_44 AC 1,039 ms
109,924 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(" ");
		long[] a = new long[n];
		for (int i = 0; i < n; i++) {
			a[i] = Long.parseLong(sa[i]);
		}
		br.close();

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

	static long gcd(long a, long b) {
		return BigInteger.valueOf(a).gcd(BigInteger.valueOf(b)).longValue();
	}
}
0