結果

問題 No.3035 2018
ユーザー simansiman
提出日時 2022-09-08 13:44:45
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 609 ms / 2,000 ms
コード長 606 bytes
コンパイル時間 4,501 ms
コンパイル使用メモリ 140,252 KB
実行使用メモリ 26,880 KB
最終ジャッジ日時 2024-05-03 08:41:35
合計ジャッジ時間 10,865 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 567 ms
26,752 KB
testcase_01 AC 562 ms
26,848 KB
testcase_02 AC 590 ms
26,732 KB
testcase_03 AC 577 ms
26,752 KB
testcase_04 AC 609 ms
26,864 KB
testcase_05 AC 540 ms
26,752 KB
testcase_06 AC 567 ms
26,864 KB
testcase_07 AC 547 ms
26,752 KB
testcase_08 AC 551 ms
26,724 KB
testcase_09 AC 572 ms
26,880 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;

const int MAX_L = 6000000;
int counter[MAX_L];

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

  memset(counter, 0, sizeof(counter));
  for (int i = 1; i <= MAX_L; ++i) {
    for (int j = i; j <= MAX_L; j += i) {
      counter[j]++;
    }
  }

  int i = 1;
  int cnt = 0;
  while (cnt < N) {
    i++;
    if (counter[i] == 4) ++cnt;
  }

  cout << i << endl;

  return 0;
}
0