結果

問題 No.458 異なる素数の和
ユーザー YamadaYamada
提出日時 2019-01-07 20:54:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 377 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 24,392 KB
最終ジャッジ日時 2024-11-24 00:30:50
合計ジャッジ時間 34,093 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
17,700 KB
testcase_01 TLE -
testcase_02 TLE -
testcase_03 AC 1,525 ms
17,568 KB
testcase_04 AC 1,982 ms
21,248 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 AC 76 ms
17,568 KB
testcase_08 TLE -
testcase_09 AC 478 ms
17,568 KB
testcase_10 AC 33 ms
21,120 KB
testcase_11 TLE -
testcase_12 AC 35 ms
21,376 KB
testcase_13 WA -
testcase_14 AC 32 ms
21,376 KB
testcase_15 AC 32 ms
17,444 KB
testcase_16 AC 882 ms
10,624 KB
testcase_17 AC 32 ms
10,752 KB
testcase_18 AC 33 ms
10,752 KB
testcase_19 AC 34 ms
10,624 KB
testcase_20 AC 35 ms
10,624 KB
testcase_21 AC 34 ms
10,496 KB
testcase_22 AC 32 ms
10,752 KB
testcase_23 AC 35 ms
10,624 KB
testcase_24 AC 34 ms
10,624 KB
testcase_25 AC 34 ms
10,624 KB
testcase_26 AC 34 ms
10,624 KB
testcase_27 TLE -
testcase_28 TLE -
testcase_29 AC 235 ms
10,624 KB
testcase_30 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N =int(input())
p=[2];A=N
for i in range(3,A):
    s=True
    for j in p:
        if i%j == 0:s=False
    if s==True:p.append(i)

lis =[0]*(N+1)
for pr in p:
    for i in range(N-pr+1):
        if lis[(N-i)-pr]!=0 or N-i-pr ==0:
            lis[N-i] =max(lis[N-i],lis[N-i-pr]+1)
        else:
            lis[N-i] = lis[N-i]
if lis[N] ==0:
    print(-1)
else:
    print(lis[N])
0