結果

問題 No.458 異なる素数の和
ユーザー amowweeamowwee
提出日時 2016-12-09 21:40:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 918 bytes
コンパイル時間 332 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,648 KB
最終ジャッジ日時 2024-05-06 13:18:26
合計ジャッジ時間 3,366 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 81 ms
11,136 KB
testcase_02 AC 102 ms
11,136 KB
testcase_03 AC 44 ms
10,880 KB
testcase_04 AC 44 ms
11,008 KB
testcase_05 AC 191 ms
11,392 KB
testcase_06 AC 92 ms
11,264 KB
testcase_07 AC 28 ms
10,880 KB
testcase_08 WA -
testcase_09 AC 31 ms
10,752 KB
testcase_10 AC 28 ms
10,752 KB
testcase_11 AC 191 ms
11,648 KB
testcase_12 AC 28 ms
10,752 KB
testcase_13 AC 27 ms
10,624 KB
testcase_14 AC 26 ms
10,624 KB
testcase_15 AC 27 ms
10,624 KB
testcase_16 AC 32 ms
10,752 KB
testcase_17 AC 25 ms
10,752 KB
testcase_18 AC 28 ms
10,752 KB
testcase_19 AC 27 ms
10,752 KB
testcase_20 WA -
testcase_21 AC 26 ms
10,752 KB
testcase_22 AC 27 ms
10,752 KB
testcase_23 AC 26 ms
10,752 KB
testcase_24 AC 27 ms
10,624 KB
testcase_25 AC 27 ms
10,752 KB
testcase_26 AC 26 ms
10,624 KB
testcase_27 AC 86 ms
11,264 KB
testcase_28 AC 186 ms
11,520 KB
testcase_29 AC 32 ms
10,752 KB
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

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しない
depth = 1     # 探索中の深さ
s=2           # 加算する素数の合計値

while depth < len(primes):
    if s+primes[depth] <= N:
        tree.append(primes[depth])
        depth += 1
    else:   # 加算中の最大の素数を外すところまで戻る
        while(tree):
            if tree[-1]:
                tree[-1] = 0
                depth = len(tree)
                break
            else:
                tree.pop()
    s = sum(tree)
    if s == N:
        print(len([x for x in tree if x]))
        break
else:
    print(-1)
0