結果

問題 No.458 異なる素数の和
ユーザー syunsukesyunsuke
提出日時 2019-01-04 16:17:50
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
MLE  
実行時間 -
コード長 1,069 bytes
コンパイル時間 114 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 519,168 KB
最終ジャッジ日時 2024-11-23 23:11:58
合計ジャッジ時間 40,054 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
17,792 KB
testcase_01 MLE -
testcase_02 MLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 MLE -
testcase_07 AC 143 ms
23,296 KB
testcase_08 MLE -
testcase_09 AC 1,454 ms
89,728 KB
testcase_10 AC 33 ms
419,328 KB
testcase_11 TLE -
testcase_12 AC 34 ms
419,968 KB
testcase_13 AC 29 ms
16,000 KB
testcase_14 AC 35 ms
418,688 KB
testcase_15 AC 30 ms
16,000 KB
testcase_16 TLE -
testcase_17 AC 32 ms
10,752 KB
testcase_18 AC 33 ms
10,880 KB
testcase_19 AC 30 ms
10,880 KB
testcase_20 AC 34 ms
10,880 KB
testcase_21 AC 31 ms
10,880 KB
testcase_22 AC 31 ms
10,624 KB
testcase_23 AC 34 ms
11,008 KB
testcase_24 AC 34 ms
10,880 KB
testcase_25 AC 32 ms
10,752 KB
testcase_26 AC 32 ms
10,752 KB
testcase_27 TLE -
testcase_28 TLE -
testcase_29 AC 601 ms
46,336 KB
testcase_30 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())

if N==1:
    print(-1)
else:
    S=[1 for i in range(N+1)]
    
    S[0]=0
    S[1]=0
    
    for i in range(2,N+1):
        if S[i]==1:
            for j in range(2,N+1):
                if i*j>N:
                    break
                else:
                    S[i*j]=0
    #print(S[:100])
    s=[0]
    for i in range(len(S)):
        if S[i]==1:
            s.append(i)
    #print(s[:100])
    
    dp=[[[0,0] for i in range(N+1)]for j in range(len(s))]
    ans=(-1)
    for i in range(1,len(s)):
        for j in range(1,N+1):
            if j-s[i]<0:
                dp[i][j][0]=dp[i-1][j][0]
                dp[i][j][1]=dp[i-1][j][1]
            else:
                dp[i][j][0]=max(dp[i-1][j][0],dp[i-1][j-s[i]][0]+s[i])
                if dp[i][j][0]==dp[i-1][j][0]:
                    dp[i][j][1]=dp[i-1][j][1]
                else:
                    dp[i][j][1]=dp[i-1][j-s[i]][1]+1
                    if dp[i][j][0]==N:
                        if dp[i][j][1]>ans:
                            ans=dp[i][j][1]
    
    
    print(ans)
0