結果

問題 No.3035 2018
ユーザー mamekinmamekin
提出日時 2018-04-09 21:32:07
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 453 ms / 2,000 ms
コード長 904 bytes
コンパイル時間 966 ms
コンパイル使用メモリ 102,784 KB
実行使用メモリ 26,836 KB
最終ジャッジ日時 2024-06-26 20:45:10
合計ジャッジ時間 6,393 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 403 ms
26,720 KB
testcase_01 AC 418 ms
26,592 KB
testcase_02 AC 453 ms
26,836 KB
testcase_03 AC 444 ms
26,700 KB
testcase_04 AC 437 ms
26,656 KB
testcase_05 AC 436 ms
26,832 KB
testcase_06 AC 436 ms
26,588 KB
testcase_07 AC 439 ms
26,816 KB
testcase_08 AC 432 ms
26,752 KB
testcase_09 AC 421 ms
26,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES
#include <cstdio>
#include <iostream>
#include <sstream>
#include <fstream>
#include <iomanip>
#include <algorithm>
#include <cmath>
#include <complex>
#include <string>
#include <vector>
#include <list>
#include <queue>
#include <stack>
#include <set>
#include <map>
#include <bitset>
#include <numeric>
#include <limits>
#include <climits>
#include <cfloat>
#include <functional>
#include <iterator>
using namespace std;

const int MAX = 6000000;

void solve(vector<int>& cnt)
{
    cnt.assign(MAX+1, 0);
    for(int i=1; i<=MAX; ++i){
        for(int j=i; j<=MAX; j+=i){
            ++ cnt[j];
        }
    }
}

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

    vector<int> cnt;
    solve(cnt);

    for(int a=1; ; ++a){
        if(cnt[a] == 4){
            -- n;
            if(n == 0){
                cout << a << endl;
                return 0;
            }
        }
    }
}
0