結果

問題 No.1036 Make One With GCD 2
ユーザー ks2mks2m
提出日時 2020-04-24 22:41:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 824 ms / 2,000 ms
コード長 980 bytes
コンパイル時間 2,174 ms
コンパイル使用メモリ 76,756 KB
実行使用メモリ 101,892 KB
最終ジャッジ日時 2024-09-16 13:26:24
合計ジャッジ時間 22,732 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 420 ms
99,880 KB
testcase_01 AC 443 ms
82,796 KB
testcase_02 AC 423 ms
101,892 KB
testcase_03 AC 247 ms
54,264 KB
testcase_04 AC 316 ms
65,504 KB
testcase_05 AC 53 ms
37,120 KB
testcase_06 AC 52 ms
37,104 KB
testcase_07 AC 351 ms
62,936 KB
testcase_08 AC 316 ms
58,372 KB
testcase_09 AC 614 ms
83,076 KB
testcase_10 AC 604 ms
83,100 KB
testcase_11 AC 626 ms
82,308 KB
testcase_12 AC 602 ms
82,800 KB
testcase_13 AC 783 ms
99,956 KB
testcase_14 AC 803 ms
101,048 KB
testcase_15 AC 824 ms
97,228 KB
testcase_16 AC 799 ms
97,260 KB
testcase_17 AC 776 ms
99,904 KB
testcase_18 AC 60 ms
37,140 KB
testcase_19 AC 76 ms
37,924 KB
testcase_20 AC 86 ms
38,784 KB
testcase_21 AC 75 ms
38,368 KB
testcase_22 AC 799 ms
96,740 KB
testcase_23 AC 666 ms
81,516 KB
testcase_24 AC 792 ms
99,672 KB
testcase_25 AC 759 ms
86,636 KB
testcase_26 AC 770 ms
85,776 KB
testcase_27 AC 51 ms
36,468 KB
testcase_28 AC 52 ms
36,480 KB
testcase_29 AC 52 ms
36,972 KB
testcase_30 AC 52 ms
36,708 KB
testcase_31 AC 54 ms
36,860 KB
testcase_32 AC 54 ms
36,708 KB
testcase_33 AC 52 ms
36,596 KB
testcase_34 AC 53 ms
37,036 KB
testcase_35 AC 51 ms
37,104 KB
testcase_36 AC 52 ms
36,692 KB
testcase_37 AC 51 ms
36,928 KB
testcase_38 AC 431 ms
100,868 KB
testcase_39 AC 435 ms
100,776 KB
testcase_40 AC 644 ms
81,240 KB
testcase_41 AC 446 ms
100,992 KB
testcase_42 AC 455 ms
100,764 KB
testcase_43 AC 453 ms
100,964 KB
testcase_44 AC 450 ms
100,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

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) {
		if (b == 0) {
			return a;
		} else {
			return gcd(b, a % b);
		}
	}
}
0