結果
問題 | No.917 Make One With GCD |
ユーザー | kitakitalily |
提出日時 | 2019-10-25 23:32:13 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 5,073 bytes |
コンパイル時間 | 2,306 ms |
コンパイル使用メモリ | 78,148 KB |
実行使用メモリ | 280,092 KB |
最終ジャッジ日時 | 2024-09-13 09:12:04 |
合計ジャッジ時間 | 8,662 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | AC | 175 ms
265,752 KB |
testcase_02 | AC | 173 ms
265,728 KB |
testcase_03 | AC | 340 ms
266,860 KB |
testcase_04 | AC | 317 ms
267,016 KB |
testcase_05 | WA | - |
testcase_06 | AC | 1,310 ms
266,976 KB |
testcase_07 | WA | - |
testcase_08 | AC | 435 ms
266,724 KB |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | AC | 210 ms
266,752 KB |
testcase_28 | AC | 213 ms
266,916 KB |
testcase_29 | AC | 234 ms
266,872 KB |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | AC | 391 ms
266,960 KB |
testcase_34 | WA | - |
testcase_35 | WA | - |
ソースコード
import java.util.*; import java.io.*; public class Main { static long mod = 1000000007; static int INF = Integer.MAX_VALUE; public static void main(String[] args){ FastScanner scanner = new FastScanner(); int n = scanner.nextInt(); int[] a = new int[n]; for(int i = 0; i < n; i++){ a[i] = scanner.nextInt(); } for(int i = 0; i < n; i++){ for(int j = 2; j <= Math.sqrt(a[i]); j++){ int cnt = 0; while(a[i] % j == 0){ a[i] /= j; cnt++; } if(cnt > 1){ a[i] *= j; } } } //for(int i = 0; i < n; i++){ //System.out.print(a[i] + " "); /// } int[][] dp = new int[55][1000000]; for(int i = 0; i < n; i++){ dp[i][a[i]] = 1; } for(int i = 0; i < n-1; i++){ for(int j = 0; j < 1000000; j++){ dp[i+1][j] += dp[i][j]; dp[i+1][gcd(j,a[i+1])] += dp[i][j]; } } System.out.println(dp[n-1][1]); } public static int gcd(int n, int m){ if(m > n) return gcd(m,n); if(m == 0) return n; return gcd(m, n%m); } public static class Edge{ int to; Edge(int to){ this.to = to; } } static class BIT{ int n; int[] bit; public BIT(int n){ this.n = n; bit = new int[n+1]; } void add(int idx, int val){ for(int i = idx+1; i <= n; i += i&(-i)) bit[i-1] += val; } int sum(int idx){ int res = 0; for(int i = idx+1; i > 0; i -= i&(-i)) res += bit[i-1]; return res; } int sum(int begin, int end){ if(begin == 0) return sum(end); return sum(end)-sum(begin-1); } } static class Pair implements Comparable<Pair>{ int first, second; Pair(int a, int b){ first = a; second = b; } @Override public boolean equals(Object o){ if (this == o) return true; if (!(o instanceof Pair)) return false; Pair p = (Pair) o; return first == p.first && second == p.second; } @Override public int compareTo(Pair p){ //return first == p.first ? second - p.second : first - p.first; //firstで昇順にソート //return (first == p.first ? second - p.second : first - p.first) * -1; //firstで降順にソート //return second == p.second ? first - p.first : second - p.second;//secondで昇順にソート return (second == p.second ? first - p.first : second - p.second)*-1;//secondで降順にソート //return first * 1.0 / second > p.first * 1.0 / p.second ? 1 : -1; // first/secondの昇順にソート //return first * 1.0 / second < p.first * 1.0 / p.second ? 1 : -1; // first/secondの降順にソート //return second * 1.0 / first > p.second * 1.0 / p.first ? 1 : -1; // second/firstの昇順にソート //return second * 1.0 / first < p.second * 1.0 / p.first ? 1 : -1; // second/firstの降順にソート //return Math.atan2(second, first) > Math.atan2(p.second, p.first) ? 1 : -1; // second/firstの昇順にソート //return first + second > p.first + p.second ? 1 : -1; //first+secondの昇順にソート //return first + second < p.first + p.second ? 1 : -1; //first+secondの降順にソート //return first - second < p.first - p.second ? 1 : -1; //first-secondの降順にソート //return Math.atan2(second,first) > Math.atan2(p.second, p.first) ? 1 : -1; } } private static class FastScanner { private final InputStream in = System.in; private final byte[] buffer = new byte[1024]; private int ptr = 0; private int buflen = 0; private boolean hasNextByte() { if (ptr < buflen) { return true; }else{ ptr = 0; try { buflen = in.read(buffer); } catch (IOException e) { e.printStackTrace(); } if (buflen <= 0) { return false; } } return true; } private int readByte() { if (hasNextByte()) return buffer[ptr++]; else return -1;} private static boolean isPrintableChar(int c) { return 33 <= c && c <= 126;} public boolean hasNext() { while(hasNextByte() && !isPrintableChar(buffer[ptr])) ptr++; return hasNextByte();} public String next() { if (!hasNext()) throw new NoSuchElementException(); StringBuilder sb = new StringBuilder(); int b = readByte(); while(isPrintableChar(b)) { sb.appendCodePoint(b); b = readByte(); } return sb.toString(); } public long nextLong() { if (!hasNext()) throw new NoSuchElementException(); long n = 0; boolean minus = false; int b = readByte(); if (b == '-') { minus = true; b = readByte(); } if (b < '0' || '9' < b) { throw new NumberFormatException(); } while(true){ if ('0' <= b && b <= '9') { n *= 10; n += b - '0'; }else if(b == -1 || !isPrintableChar(b)){ return minus ? -n : n; }else{ throw new NumberFormatException(); } b = readByte(); } } public int nextInt() { long nl = nextLong(); if (nl < Integer.MIN_VALUE || nl > Integer.MAX_VALUE) throw new NumberFormatException(); return (int) nl; } public double nextDouble() { return Double.parseDouble(next());} } }