結果

問題 No.458 異なる素数の和
ユーザー phtmscgphtmscg
提出日時 2019-04-21 01:50:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 657 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-10-03 03:12:51
合計ジャッジ時間 4,943 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 135 ms
10,752 KB
testcase_02 AC 192 ms
10,624 KB
testcase_03 AC 63 ms
10,624 KB
testcase_04 AC 59 ms
10,752 KB
testcase_05 AC 733 ms
10,752 KB
testcase_06 AC 239 ms
10,624 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 WA -
testcase_09 AC 40 ms
10,624 KB
testcase_10 AC 29 ms
10,880 KB
testcase_11 AC 344 ms
10,752 KB
testcase_12 AC 29 ms
10,752 KB
testcase_13 AC 27 ms
10,624 KB
testcase_14 AC 27 ms
10,624 KB
testcase_15 AC 27 ms
10,624 KB
testcase_16 AC 42 ms
10,624 KB
testcase_17 AC 28 ms
10,624 KB
testcase_18 AC 30 ms
10,752 KB
testcase_19 AC 28 ms
10,624 KB
testcase_20 WA -
testcase_21 AC 29 ms
10,624 KB
testcase_22 AC 29 ms
10,624 KB
testcase_23 AC 29 ms
10,624 KB
testcase_24 AC 29 ms
10,880 KB
testcase_25 AC 29 ms
10,624 KB
testcase_26 AC 29 ms
10,752 KB
testcase_27 AC 139 ms
10,624 KB
testcase_28 AC 332 ms
10,752 KB
testcase_29 AC 34 ms
10,624 KB
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
if N > 1:
    p = [2]
    for i in range(3,N+1,2):
        for s in p:
            if i%s == 0:
                break
        else:
            p += [i]
else:
    print(-1)
    exit()

p = p[::-1]
Q = [0]*len(p)
q = 0
i = len(p)-1
while True:
    if i >= 0:
        if q + p[i] == N:
            Q[i] = 1
            break
        elif q + p[i] < N:
            Q[i] = 1
            q += p[i]
            i -= 1
        elif Q.count(1) == 0:
            break
        else:
            d = Q.index(1)
            q -= p[d]
            Q[d] = 0
            i = d-1
    else:
        Q = [0]
        break
print(sum(Q) if sum(Q) != 0 else -1)
0