結果

問題 No.458 異なる素数の和
ユーザー amowweeamowwee
提出日時 2016-12-10 18:28:02
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 926 bytes
コンパイル時間 94 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 22,016 KB
最終ジャッジ日時 2024-11-29 01:57:47
合計ジャッジ時間 52,759 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 30 ms
16,000 KB
testcase_11 TLE -
testcase_12 AC 30 ms
15,872 KB
testcase_13 AC 29 ms
21,120 KB
testcase_14 AC 30 ms
15,744 KB
testcase_15 AC 30 ms
21,504 KB
testcase_16 TLE -
testcase_17 AC 32 ms
17,444 KB
testcase_18 AC 31 ms
16,000 KB
testcase_19 AC 30 ms
20,992 KB
testcase_20 AC 38 ms
15,872 KB
testcase_21 AC 29 ms
10,752 KB
testcase_22 AC 29 ms
10,496 KB
testcase_23 AC 35 ms
10,624 KB
testcase_24 AC 38 ms
10,624 KB
testcase_25 AC 30 ms
10,496 KB
testcase_26 AC 30 ms
10,624 KB
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

# エラトステネスのふるい
def Eratosthenes(maxNum):
    sieve = list(range(2,maxNum+1))
    result = []
    while sieve:
        prime = sieve[0]
        sieve = [x for x in sieve if x % prime]
        result.append(prime)
    return result
 
N=int(input())
primes = Eratosthenes(N)
tree = [2]    # 探索する二分木.各素数を加算するorしない
s=2           # 加算する素数の合計値
result = -1
 
while tree:
    if len(tree) < len(primes) and s+primes[len(tree)] <= N:
        tree.append(primes[len(tree)])
    else:   # 加算中の最大の素数を外すところまで戻る
        while(tree):
            if tree[-1]:
                tree[-1] = 0
                break
            else:
                tree.pop()
    s = sum(tree)
    if s == N:
        treeElements = [x for x in tree if x]
        if len(treeElements) > result:
            result = len(treeElements)
print(result)
0