結果

問題 No.1036 Make One With GCD 2
ユーザー htensaihtensai
提出日時 2020-06-12 18:59:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,646 ms / 2,000 ms
コード長 2,542 bytes
コンパイル時間 2,963 ms
コンパイル使用メモリ 78,000 KB
実行使用メモリ 127,696 KB
最終ジャッジ日時 2024-09-16 14:24:55
合計ジャッジ時間 32,101 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,072 ms
127,568 KB
testcase_01 AC 628 ms
101,352 KB
testcase_02 AC 569 ms
127,440 KB
testcase_03 AC 326 ms
68,448 KB
testcase_04 AC 383 ms
78,936 KB
testcase_05 AC 53 ms
49,980 KB
testcase_06 AC 52 ms
50,292 KB
testcase_07 AC 407 ms
73,176 KB
testcase_08 AC 382 ms
69,664 KB
testcase_09 AC 803 ms
101,484 KB
testcase_10 AC 776 ms
101,312 KB
testcase_11 AC 790 ms
101,456 KB
testcase_12 AC 783 ms
100,368 KB
testcase_13 AC 977 ms
127,676 KB
testcase_14 AC 988 ms
127,696 KB
testcase_15 AC 930 ms
125,776 KB
testcase_16 AC 964 ms
125,792 KB
testcase_17 AC 973 ms
127,544 KB
testcase_18 AC 79 ms
51,008 KB
testcase_19 AC 85 ms
51,412 KB
testcase_20 AC 99 ms
51,328 KB
testcase_21 AC 103 ms
51,256 KB
testcase_22 AC 943 ms
125,356 KB
testcase_23 AC 734 ms
93,680 KB
testcase_24 AC 980 ms
125,752 KB
testcase_25 AC 905 ms
103,796 KB
testcase_26 AC 938 ms
103,768 KB
testcase_27 AC 54 ms
49,996 KB
testcase_28 AC 52 ms
50,040 KB
testcase_29 AC 53 ms
50,168 KB
testcase_30 AC 53 ms
50,084 KB
testcase_31 AC 54 ms
49,868 KB
testcase_32 AC 54 ms
50,396 KB
testcase_33 AC 53 ms
50,140 KB
testcase_34 AC 56 ms
50,000 KB
testcase_35 AC 54 ms
49,788 KB
testcase_36 AC 53 ms
50,212 KB
testcase_37 AC 51 ms
49,932 KB
testcase_38 AC 921 ms
127,192 KB
testcase_39 AC 1,646 ms
127,400 KB
testcase_40 AC 757 ms
93,404 KB
testcase_41 AC 1,328 ms
127,516 KB
testcase_42 AC 1,281 ms
127,104 KB
testcase_43 AC 1,250 ms
126,964 KB
testcase_44 AC 1,333 ms
127,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
	public static void main (String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] first = br.readLine().split(" ");
		int n = Integer.parseInt(first[0]);
		SegmentTree st = new SegmentTree(n);
		String[] second = br.readLine().split(" ", n);
		for (int i = 0; i < n; i++) {
		    st.set(i, Long.parseLong(second[i]));
		}
		st.updateAll();
		long total = 0;
		int idx = 0;
		for (int i = 0; i < n && idx < n; i++) {
		    idx = Math.max(idx, i);
		    while (idx < n && st.query(i, idx) > 1) {
		        idx++;
		    }
		    if (idx >= n) {
		        break;
		    }
		    total += n - idx;
		}
	    System.out.println(total);
	}
	
	static class Path implements Comparable<Path> {
	    int row;
	    int col;
	    int value;
	    int count;
	    
	    public Path(int row, int col, int value, int count) {
	        this.row = row;
	        this.col = col;
	        this.value = value;
	        this.count = count;
	    }
	    
	    public int compareTo(Path another) {
	        return value - another.value;
	    }
	}
}
class SegmentTree {
    int size;
    int base;
    long[] tree;
    
    public SegmentTree(int size) {
        this.size = size;
        base = 1;
        while (base < size) {
            base <<= 1;
        }
        tree = new long[base * 2 - 1];
    }
    
    public void set(int idx, long value) {
        tree[idx + base - 1] = value;
    }
    
    public void updateAll() {
        update(0);
    }
    
    public long update(int idx) {
        if (idx >= base - 1) {
            return tree[idx];
        }
        return tree[idx] = getGCD(update(2 * idx + 1), update(2 * idx + 2));
    }
    
    public long query(int min, int max) {
        return query(min, max, 0, 0, base);
    }
    
    public long query(int min, int max, int idx, int left, int right) {
        if (min >= right || max < left) {
            return 0;
        }
        if (min <= left && right - 1 <= max) {
            return tree[idx];
        }
        long x1 = query(min, max, 2 * idx + 1, left, (left + right) / 2);
        long x2 = query(min, max, 2 * idx + 2, (left + right) / 2, right);
        return getGCD(x1, x2);
    }
    
    private long getGCD(long x, long y) {
        if (x == 0) {
            return y;
        }
        if (y == 0) {
            return x;
        }
        if (x % y == 0) {
            return y;
        } else {
            return getGCD(y, x % y);
        }
    }
 }
0