結果

問題 No.3035 2018
ユーザー square1001square1001
提出日時 2018-04-01 21:54:01
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 868 ms / 2,000 ms
コード長 327 bytes
コンパイル時間 792 ms
コンパイル使用メモリ 63,488 KB
実行使用メモリ 30,848 KB
最終ジャッジ日時 2024-06-26 05:48:32
合計ジャッジ時間 11,149 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 844 ms
30,720 KB
testcase_01 AC 856 ms
30,720 KB
testcase_02 AC 856 ms
30,720 KB
testcase_03 AC 858 ms
30,720 KB
testcase_04 AC 844 ms
30,720 KB
testcase_05 AC 848 ms
30,848 KB
testcase_06 AC 868 ms
30,720 KB
testcase_07 AC 848 ms
30,720 KB
testcase_08 AC 862 ms
30,720 KB
testcase_09 AC 832 ms
30,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;
int n, d[7000009];
int main() {
	cin >> n;
	for (int i = 1; i <= 7000000; i++) {
		for (int j = i; j <= 7000000; j += i) {
			d[j]++;
		}
	}
	int cnt = 0;
	for (int i = 1; i <= 7000000; i++) {
		if (d[i] == 4) cnt++;
		if (cnt == n) {
			cout << i << endl;
			break;
		}
	}
	return 0;
}
0