結果
問題 | No.1058 素敵な数 |
ユーザー | r_ishida |
提出日時 | 2021-01-23 22:22:33 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 26 ms / 2,000 ms |
コード長 | 887 bytes |
コンパイル時間 | 181 ms |
コンパイル使用メモリ | 12,928 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-06-10 07:33:51 |
合計ジャッジ時間 | 918 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 25 ms
10,752 KB |
testcase_01 | AC | 24 ms
10,752 KB |
testcase_02 | AC | 24 ms
10,880 KB |
testcase_03 | AC | 25 ms
10,752 KB |
testcase_04 | AC | 25 ms
10,752 KB |
testcase_05 | AC | 25 ms
10,880 KB |
testcase_06 | AC | 26 ms
10,752 KB |
testcase_07 | AC | 26 ms
10,880 KB |
testcase_08 | AC | 25 ms
10,880 KB |
testcase_09 | AC | 25 ms
10,880 KB |
ソースコード
import sys def S(): return sys.stdin.readline().rstrip() def I(): return int(sys.stdin.readline().rstrip()) def MI(): return map(int,sys.stdin.readline().rstrip().split()) def LI(): return list(map(int,sys.stdin.readline().rstrip().split())) def LS(): return list(sys.stdin.readline().rstrip().split()) def is_prime(p): if p == 1: return 0 for k in range(2, int(p**0.5) + 1): if p%k == 0: return 0 else: return 1 n = I() if n == 1: print(1) else: cnt = 0 m = 10**5+1 pr = [] while cnt <= 10: if is_prime(m) == 1: pr.append(m) cnt += 1 m += 1 else: m += 1 ans = [] for i in range(10): for j in range(10): ans.append(pr[i]*pr[j]) ans = sorted(set(ans)) print(ans[n-2])