結果

問題 No.1730 GCD on Blackboard in yukicoder
ユーザー simansiman
提出日時 2023-08-03 21:57:48
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 364 ms / 2,000 ms
コード長 832 bytes
コンパイル時間 2,280 ms
コンパイル使用メモリ 140,520 KB
実行使用メモリ 8,704 KB
最終ジャッジ日時 2024-10-13 19:08:58
合計ジャッジ時間 8,986 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 319 ms
8,576 KB
testcase_01 AC 4 ms
7,296 KB
testcase_02 AC 29 ms
7,168 KB
testcase_03 AC 27 ms
7,424 KB
testcase_04 AC 28 ms
7,296 KB
testcase_05 AC 27 ms
7,168 KB
testcase_06 AC 26 ms
7,424 KB
testcase_07 AC 28 ms
7,296 KB
testcase_08 AC 4 ms
7,296 KB
testcase_09 AC 19 ms
7,168 KB
testcase_10 AC 20 ms
7,296 KB
testcase_11 AC 4 ms
7,296 KB
testcase_12 AC 4 ms
7,168 KB
testcase_13 AC 330 ms
8,704 KB
testcase_14 AC 322 ms
8,704 KB
testcase_15 AC 364 ms
8,576 KB
testcase_16 AC 317 ms
8,576 KB
testcase_17 AC 330 ms
8,704 KB
testcase_18 AC 296 ms
8,704 KB
testcase_19 AC 319 ms
8,576 KB
testcase_20 AC 295 ms
8,576 KB
testcase_21 AC 301 ms
8,576 KB
testcase_22 AC 311 ms
8,576 KB
testcase_23 AC 264 ms
8,704 KB
testcase_24 AC 305 ms
8,576 KB
testcase_25 AC 321 ms
8,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cassert>
#include <cmath>
#include <algorithm>
#include <iostream>
#include <iomanip>
#include <climits>
#include <map>
#include <queue>
#include <set>
#include <cstring>
#include <vector>

using namespace std;
typedef long long ll;

int main() {
  int N;
  cin >> N;

  int counter[1000010];
  memset(counter, 0, sizeof(counter));

  int a_max = 0;
  int A[N];
  for (int i = 0; i < N; ++i) {
    cin >> A[i];
    counter[A[i]]++;
    a_max = max(a_max, A[i]);
  }

  vector<int> ans(N, 1);
  for (int i = 2; i <= a_max; ++i) {
    int v = 0;

    for (int j = i; j <= a_max; j += i) {
      v += counter[j];
    }

    if (v != 0) {
      ans[N - v] = i;
    }
  }

  for (int i = 1; i < N; ++i) {
    ans[i] = max(ans[i], ans[i - 1]);
  }

  for (int i = 0; i < N; ++i) {
    cout << ans[i] << endl;
  }

  return 0;
}
0