結果

問題 No.3035 2018
ユーザー toriaezuACtoriaezuAC
提出日時 2018-04-02 21:43:19
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 619 ms / 2,000 ms
コード長 412 bytes
コンパイル時間 429 ms
コンパイル使用メモリ 55,112 KB
実行使用メモリ 26,880 KB
最終ジャッジ日時 2024-06-26 06:47:49
合計ジャッジ時間 7,611 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 606 ms
26,752 KB
testcase_01 AC 615 ms
26,880 KB
testcase_02 AC 562 ms
26,740 KB
testcase_03 AC 619 ms
26,728 KB
testcase_04 AC 602 ms
26,752 KB
testcase_05 AC 598 ms
26,752 KB
testcase_06 AC 595 ms
26,740 KB
testcase_07 AC 544 ms
26,752 KB
testcase_08 AC 580 ms
26,784 KB
testcase_09 AC 599 ms
26,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;
const int MAX = 6000000;
int K;

int factors[MAX + 1];

void Pre_calc() {
	for (int p = 1; p <= MAX; ++p) {
		for (int i = p; i <= MAX; i += p) {
			++factors[i];
		}
	}
}

int main() {
	Pre_calc();

	cin >> K;
	int cnt = 0;
	for (int i = 0; i < MAX; ++i) {
		if (factors[i] == 4) {
			++cnt;
			if (cnt == K) {
				cout << i << endl;
				break;
			}
		}
	}
	return 0;
}
0