結果

問題 No.458 異なる素数の和
ユーザー こるこる
提出日時 2017-01-06 21:28:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 454 bytes
コンパイル時間 110 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 12,032 KB
最終ジャッジ日時 2024-05-09 21:06:55
合計ジャッジ時間 2,521 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 RE -
testcase_02 RE -
testcase_03 AC 222 ms
11,008 KB
testcase_04 AC 42 ms
11,136 KB
testcase_05 RE -
testcase_06 RE -
testcase_07 AC 34 ms
10,880 KB
testcase_08 RE -
testcase_09 AC 106 ms
11,008 KB
testcase_10 WA -
testcase_11 RE -
testcase_12 WA -
testcase_13 AC 30 ms
10,752 KB
testcase_14 AC 29 ms
10,880 KB
testcase_15 WA -
testcase_16 AC 35 ms
10,880 KB
testcase_17 AC 29 ms
10,880 KB
testcase_18 AC 29 ms
10,880 KB
testcase_19 AC 29 ms
10,880 KB
testcase_20 WA -
testcase_21 AC 29 ms
10,880 KB
testcase_22 AC 30 ms
10,752 KB
testcase_23 AC 29 ms
10,880 KB
testcase_24 AC 29 ms
10,752 KB
testcase_25 AC 29 ms
10,880 KB
testcase_26 AC 29 ms
10,880 KB
testcase_27 RE -
testcase_28 RE -
testcase_29 AC 49 ms
10,752 KB
testcase_30 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
n=int(input())
a=list(range(n+1))
a[1]=0
i=2
while i**2<=n:
    j=i+i
    while j<=n:
        a[j]=0
        j+=i
    i+=1
list=[]
for i in a:
    if i!=0:
        list.append(i)
def fun(sum,index,target,count):
    if sum==target:
        print(count)
        sys.exit()
        return
    if index==len(list) or sum>target:
        return
    fun(sum+list[index],index+1,target,count+1)
    fun(sum,index+1,target,count)

print(fun(0,0,n,0))
0