結果
| 問題 | No.1058 素敵な数 |
| コンテスト | |
| ユーザー |
双六
|
| 提出日時 | 2020-08-20 19:13:24 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 779 bytes |
| 記録 | |
| コンパイル時間 | 908 ms |
| コンパイル使用メモリ | 84,864 KB |
| 実行使用メモリ | 76,928 KB |
| 最終ジャッジ日時 | 2026-05-01 04:11:10 |
| 合計ジャッジ時間 | 2,840 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 2 WA * 7 |
ソースコード
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.sort()
# print(anstable)
print(anstable[N - 1])
if __name__ == '__main__':
main()
双六