結果
問題 | No.1036 Make One With GCD 2 |
ユーザー | merom686 |
提出日時 | 2020-04-25 01:20:47 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,618 bytes |
コンパイル時間 | 990 ms |
コンパイル使用メモリ | 89,664 KB |
実行使用メモリ | 11,392 KB |
最終ジャッジ日時 | 2024-11-07 03:56:19 |
合計ジャッジ時間 | 8,521 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 157 ms
11,204 KB |
testcase_03 | AC | 16 ms
6,816 KB |
testcase_04 | AC | 25 ms
9,856 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 32 ms
6,912 KB |
testcase_08 | AC | 28 ms
6,656 KB |
testcase_09 | AC | 161 ms
11,136 KB |
testcase_10 | AC | 149 ms
10,856 KB |
testcase_11 | AC | 163 ms
11,372 KB |
testcase_12 | AC | 152 ms
10,880 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 2 ms
5,248 KB |
testcase_19 | AC | 2 ms
5,248 KB |
testcase_20 | AC | 2 ms
5,248 KB |
testcase_21 | AC | 2 ms
5,248 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 3 ms
5,248 KB |
testcase_28 | AC | 2 ms
5,248 KB |
testcase_29 | AC | 3 ms
5,248 KB |
testcase_30 | AC | 2 ms
5,248 KB |
testcase_31 | AC | 3 ms
5,248 KB |
testcase_32 | AC | 2 ms
5,248 KB |
testcase_33 | AC | 2 ms
5,248 KB |
testcase_34 | AC | 2 ms
5,248 KB |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | AC | 150 ms
11,264 KB |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
ソースコード
#include <iostream> #include <vector> #include <string> #include <algorithm> #include <cstring> #include <cstdlib> #include <cmath> using namespace std; using ll = long long; int gcd(int n, int m) { if (n < m) swap(n, m); while (m != 0) { int r = n % m; n = m; m = r; } return n; } template <class T> struct SegmentTree { SegmentTree(int n) : n(n) { for (m = 2; m < n; m *= 2); t = vector<T>(m + n + n % 2); } T &operator[](int i) { return t[m + i]; } const T &root() const { return t[1]; } void build() { for (int i = (n - 1 + m) / 2; i > 0; i--) t[i] = t[i * 2] * t[i * 2 + 1]; } void update(int i, const T &o) { for (t[i += m] = o; i /= 2, i > 0;) t[i] = t[i * 2] * t[i * 2 + 1]; } T query(int l, int r) { T o0, o1; for (l += m, r += m; l < r; l /= 2, r /= 2) { if (l & 1) o0 = o0 * t[l++]; if (r & 1) o1 = t[--r] * o1; } return o0 * o1; } vector<T> t; int n, m; }; struct Node { constexpr Node() : v(0) {} Node(ll v) : v(v) {} Node operator*(const Node &o) const { return gcd(v, o.v); } ll v; }; int main() { ios::sync_with_stdio(false); cin.tie(0); int n; cin >> n; SegmentTree<Node> st(n); for (int i = 0; i < n; i++) { cin >> st[i].v; } st.build(); ll r = 0; for (int i0 = 0, i1 = 0; i0 < n; i0++) { while (i1 <= n && st.query(i0, i1).v != 1) i1++; r += n - i1 + 1; } cout << r << endl; return 0; }