結果

問題 No.8035 2018
ユーザー simansiman
提出日時 2022-09-08 13:44:45
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 282 ms / 2,000 ms
コード長 606 bytes
コンパイル時間 1,791 ms
コンパイル使用メモリ 137,804 KB
実行使用メモリ 26,904 KB
最終ジャッジ日時 2024-11-24 07:10:41
合計ジャッジ時間 4,699 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 265 ms
26,864 KB
testcase_01 AC 271 ms
26,840 KB
testcase_02 AC 262 ms
26,836 KB
testcase_03 AC 249 ms
26,744 KB
testcase_04 AC 241 ms
26,748 KB
testcase_05 AC 250 ms
26,852 KB
testcase_06 AC 282 ms
26,724 KB
testcase_07 AC 260 ms
26,792 KB
testcase_08 AC 263 ms
26,904 KB
testcase_09 AC 253 ms
26,832 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