結果
問題 | No.1058 素敵な数 |
ユーザー | Geckoちゃん |
提出日時 | 2020-05-22 21:54:46 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 718 bytes |
コンパイル時間 | 103 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-10-05 17:07:16 |
合計ジャッジ時間 | 1,064 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
10,752 KB |
testcase_01 | AC | 30 ms
10,752 KB |
testcase_02 | AC | 29 ms
10,752 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
ソースコード
from math import sqrt from collections import Counter def prime_factorization(n): counter = Counter() for i in range(2, int(sqrt(n)) + 1): while n % i == 0: n //= i counter[i] += 1 if n != 1: counter[n] += 1 return list(counter.items()) def prime_factors(n): return set(map(lambda x: x[0], prime_factorization(n))) import itertools primes = [] cur = 10**5+1 while True: now = prime_factors(cur) if len(now) == 1: primes.append(cur) cur += 1 if len(primes) == 10: break ans = [1] #print(primes) for p1,p2 in itertools.product(primes, repeat=2): a = p1*p2 ans.append(a) ans.sort() print(ans[int(input())-1])