結果
問題 | No.3035 2018 |
ユーザー | ats5515 |
提出日時 | 2018-04-01 23:43:42 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 1,635 ms / 2,000 ms |
コード長 | 1,237 bytes |
コンパイル時間 | 1,233 ms |
コンパイル使用メモリ | 84,084 KB |
実行使用メモリ | 46,460 KB |
最終ジャッジ日時 | 2024-06-26 06:13:24 |
合計ジャッジ時間 | 8,080 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 159 ms
46,456 KB |
testcase_01 | AC | 160 ms
46,332 KB |
testcase_02 | AC | 158 ms
46,456 KB |
testcase_03 | AC | 1,625 ms
46,452 KB |
testcase_04 | AC | 1,635 ms
46,332 KB |
testcase_05 | AC | 1,601 ms
46,456 KB |
testcase_06 | AC | 784 ms
46,324 KB |
testcase_07 | AC | 161 ms
46,456 KB |
testcase_08 | AC | 160 ms
46,456 KB |
testcase_09 | AC | 159 ms
46,460 KB |
ソースコード
#include <iostream> #include <vector> #include <map> #include <set> #include <queue> #include <string> #include <iomanip> #include <algorithm> #include <cmath> #include <stdio.h> using namespace std; #define int long long int MOD = 1000000007; vector<int> primes; vector<int> primel; void sieve_of_eratosthenes(int n) { primes.resize(n); for (int i = 2; i < n; ++i) primes[i] = i; for (int i = 2; i*i < n; ++i) if (primes[i]) for (int j = i*i; j < n; j += i) primes[j] = 0; for (int i = 2; i < primes.size(); i++) { if (primes[i] == i)primel.push_back(i); } } int cnt(int a) { int res = 0; int A = a; for (int jj = 0; jj < primel.size(); jj++) { int j = primel[jj]; if (j > a)break; if (j*j > a)j = a; if (a%j == 0) { res++; if (res > 2)return 0; a /= j; if (a%j == 0) { if (j*j*j == A) { return 1; } return 0; } if (primes[a] == a)return 1; return 0; } } return 0; } signed main() { cin.tie(0); ios::sync_with_stdio(false); int N; cin >> N; sieve_of_eratosthenes(5000000); //cerr << primel.back() << endl; int res = 0; int i = 0; while(res < N){ res += cnt(i); i++; } /*for (int i = 0; i <= N; i++) { res += cnt(i); }*/ cout << i - 1 << endl; }