結果

問題 No.1058 素敵な数
ユーザー 双六双六
提出日時 2020-08-20 19:15:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 812 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 78,808 KB
最終ジャッジ日時 2024-10-13 17:03:53
合計ジャッジ時間 1,563 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
78,380 KB
testcase_01 AC 77 ms
77,256 KB
testcase_02 AC 75 ms
77,364 KB
testcase_03 AC 75 ms
77,200 KB
testcase_04 AC 74 ms
77,640 KB
testcase_05 AC 72 ms
77,668 KB
testcase_06 AC 73 ms
77,232 KB
testcase_07 AC 72 ms
78,808 KB
testcase_08 AC 72 ms
77,424 KB
testcase_09 AC 71 ms
77,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys; input = sys.stdin.buffer.readline
sys.setrecursionlimit(10**7)
from collections import defaultdict
con = 10 ** 9 + 7; INF = float("inf")

def getlist():
	return list(map(int, input().split()))

num = 10 ** 6 + 1 #適当に値を入れる
L = [1 for i in range(num)]; L[0] = 0; L[1] = 0
plist = []
for i in range(num):
	if L[i] == 1:
		plist.append(i); c = 2
		while i * c <= num - 1:
			L[i * c] = 0; c += 1

#処理内容
def main():
	N = int(input())
	table = []
	for i in plist:
		if 10 ** 5 + 1 <= i <= 10 ** 5 + 150:
			table.append(i)

	# print(table)
	M = len(table)
	anstable = [1]
	for i in range(M):
		for j in range(M):
			anstable.append(table[i] * table[j])

	anstable = list(set(anstable))

	anstable.sort()
	# print(anstable)
	print(anstable[N - 1])

if __name__ == '__main__':
	main()
0