結果
問題 | No.458 異なる素数の和 |
ユーザー | jensen |
提出日時 | 2021-01-15 13:40:22 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 868 bytes |
コンパイル時間 | 97 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 366,464 KB |
最終ジャッジ日時 | 2024-11-25 21:21:45 |
合計ジャッジ時間 | 11,679 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
11,008 KB |
testcase_01 | AC | 615 ms
112,000 KB |
testcase_02 | AC | 724 ms
143,616 KB |
testcase_03 | AC | 187 ms
33,024 KB |
testcase_04 | AC | 217 ms
39,808 KB |
testcase_05 | AC | 1,465 ms
306,560 KB |
testcase_06 | AC | 686 ms
135,936 KB |
testcase_07 | AC | 41 ms
11,648 KB |
testcase_08 | AC | 1,461 ms
309,248 KB |
testcase_09 | AC | 86 ms
17,536 KB |
testcase_10 | RE | - |
testcase_11 | AC | 1,742 ms
366,464 KB |
testcase_12 | WA | - |
testcase_13 | AC | 27 ms
10,880 KB |
testcase_14 | AC | 28 ms
10,880 KB |
testcase_15 | WA | - |
testcase_16 | AC | 124 ms
23,552 KB |
testcase_17 | AC | 27 ms
10,880 KB |
testcase_18 | AC | 27 ms
11,008 KB |
testcase_19 | AC | 27 ms
11,008 KB |
testcase_20 | AC | 29 ms
10,752 KB |
testcase_21 | AC | 26 ms
10,880 KB |
testcase_22 | AC | 27 ms
10,880 KB |
testcase_23 | AC | 29 ms
10,880 KB |
testcase_24 | AC | 29 ms
10,880 KB |
testcase_25 | AC | 29 ms
10,880 KB |
testcase_26 | AC | 30 ms
10,880 KB |
testcase_27 | AC | 665 ms
129,664 KB |
testcase_28 | AC | 1,729 ms
358,528 KB |
testcase_29 | AC | 61 ms
14,208 KB |
testcase_30 | AC | 424 ms
83,712 KB |
ソースコード
import math def is_prime(n): if n == 1: return False for k in range(2, int(math.sqrt(n)) + 1): if n % k == 0: return False return True def find(l,iter,a): for i in range(iter,len(l)): if(l[i]>=a): break return i n=int(input()) pris=[] prisum=[] for i in range(2,n+1): if(is_prime(i)==True): pris.append(i) suum=0 for i in range(0,len(pris)): suum+=pris[i] prisum.append(suum) x=len(pris) f=[[0]*x for i in range(n)] f[1][0]=1 if(n>2): f[2][1]=1 if(n>4): ite=0 for i in range(4,n): ite=find(prisum,ite,i+1) for j in range(ite,min(ite+10,x)): if(i+1==pris[j]): f[i][j]=1 else: z=max(f[i-pris[j]][:j]) if(z>0): f[i][j]=z+1 print(max(f[n-1]))