結果

問題 No.458 異なる素数の和
ユーザー aqua_tenhouaqua_tenhou
提出日時 2020-09-15 21:45:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 462 ms / 2,000 ms
コード長 602 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 76,896 KB
最終ジャッジ日時 2024-06-22 02:43:13
合計ジャッジ時間 4,872 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
63,416 KB
testcase_01 AC 187 ms
76,608 KB
testcase_02 AC 227 ms
76,828 KB
testcase_03 AC 98 ms
76,536 KB
testcase_04 AC 104 ms
76,504 KB
testcase_05 AC 392 ms
76,792 KB
testcase_06 AC 215 ms
76,896 KB
testcase_07 AC 51 ms
66,856 KB
testcase_08 AC 403 ms
76,844 KB
testcase_09 AC 72 ms
73,392 KB
testcase_10 AC 33 ms
53,960 KB
testcase_11 AC 462 ms
76,664 KB
testcase_12 AC 33 ms
53,544 KB
testcase_13 AC 34 ms
52,772 KB
testcase_14 AC 32 ms
53,608 KB
testcase_15 AC 32 ms
52,916 KB
testcase_16 AC 82 ms
74,384 KB
testcase_17 AC 36 ms
60,112 KB
testcase_18 AC 36 ms
59,524 KB
testcase_19 AC 32 ms
53,196 KB
testcase_20 AC 37 ms
60,600 KB
testcase_21 AC 33 ms
52,392 KB
testcase_22 AC 33 ms
53,012 KB
testcase_23 AC 37 ms
59,712 KB
testcase_24 AC 38 ms
60,808 KB
testcase_25 AC 34 ms
53,788 KB
testcase_26 AC 36 ms
58,716 KB
testcase_27 AC 206 ms
76,764 KB
testcase_28 AC 450 ms
76,868 KB
testcase_29 AC 64 ms
72,444 KB
testcase_30 AC 156 ms
76,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def fact(A):
    c0 = A
    r = 2
    lis = []
    count = 1
    while A != 1:
        if A%r == 0:
            A = A//r
            lis.append(r)
            r = 2
        else:
            r += 1
        if r > int(pow(c0,0.5))+1:
            lis.append(A)
            break
    return(lis)

L = []
n = int(input())
for i in range(2,n+1):
    s = fact(i)
    if len(s) == 1:
        L.append(i)
d = [-1]*(n+1)
d[0] = 0
for x in L:

    for i in range(n+1):
        j = n - i
        if x+j > n:
            pass
        
        elif d[j] != -1:
            d[j+x] = max(d[j+x], d[j]+1)

print(d[-1])
0