結果

問題 No.1730 GCD on Blackboard in yukicoder
ユーザー kyo1kyo1
提出日時 2021-12-07 06:57:37
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 875 ms / 2,000 ms
コード長 657 bytes
コンパイル時間 2,313 ms
コンパイル使用メモリ 202,108 KB
実行使用メモリ 8,736 KB
最終ジャッジ日時 2024-11-08 05:18:09
合計ジャッジ時間 11,089 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 875 ms
8,704 KB
testcase_01 AC 5 ms
7,168 KB
testcase_02 AC 6 ms
7,044 KB
testcase_03 AC 5 ms
7,144 KB
testcase_04 AC 6 ms
7,100 KB
testcase_05 AC 5 ms
7,168 KB
testcase_06 AC 5 ms
7,040 KB
testcase_07 AC 6 ms
7,140 KB
testcase_08 AC 5 ms
7,048 KB
testcase_09 AC 5 ms
7,040 KB
testcase_10 AC 6 ms
7,040 KB
testcase_11 AC 5 ms
7,040 KB
testcase_12 AC 5 ms
7,040 KB
testcase_13 AC 529 ms
8,448 KB
testcase_14 AC 530 ms
8,692 KB
testcase_15 AC 528 ms
8,692 KB
testcase_16 AC 529 ms
8,656 KB
testcase_17 AC 527 ms
8,704 KB
testcase_18 AC 260 ms
8,576 KB
testcase_19 AC 708 ms
8,448 KB
testcase_20 AC 122 ms
8,576 KB
testcase_21 AC 120 ms
8,736 KB
testcase_22 AC 723 ms
8,656 KB
testcase_23 AC 28 ms
8,704 KB
testcase_24 AC 29 ms
8,672 KB
testcase_25 AC 465 ms
8,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

int main() {
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int N;
  cin >> N;
  vector<int> A(N);
  vector<int> B(1000000 + 10, 0);
  for (auto&& e : A) {
    cin >> e;
    for (int i = 1; i * i < e + 1; i++) {
      if (e % i == 0) {
        B[i]++;
        if (i * i != e) B[e / i]++;
      }
    }
  }
  vector<int> res(N, 1);
  for (int i = 0; i < (int)B.size(); i++) {
    if (B[i] > 0) {
      res[N - B[i]] = max(res[N - B[i]], i);
    }
  }
  for (int i = 0; i + 1 < N; i++) {
    res[i + 1] = max(res[i + 1], res[i]);
  }
  for (const auto& e : res) {
    cout << e << '\n';
  }
  return 0;
}
0