結果

問題 No.1058 素敵な数
ユーザー paruf4paruf4
提出日時 2020-05-23 00:01:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 29 ms / 2,000 ms
コード長 331 bytes
コンパイル時間 86 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-04-15 19:41:32
合計ジャッジ時間 844 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,880 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 29 ms
10,880 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 28 ms
10,880 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 AC 28 ms
11,008 KB
testcase_07 AC 29 ms
10,880 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 28 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def isPrime(p):
  for i in range(2, int(p**0.5)+1):
    if p%i==0:
        return False
  return True

n=int(input())
a=[]
for i in range(100000,200001):
  if len(a)>10:break
  if isPrime(i):a.append(i)
a.sort()
b=[1]
na=len(a)
for i in range(na):
  for j in range(na):
    b.append(a[i]*a[j])
b=sorted(list(set(b)))
print(b[n-1])
0