結果
問題 | No.458 異なる素数の和 |
ユーザー | phtmscg |
提出日時 | 2019-04-21 15:29:11 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 711 bytes |
コンパイル時間 | 223 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 21,120 KB |
最終ジャッジ日時 | 2024-10-05 20:26:26 |
合計ジャッジ時間 | 6,792 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
ソースコード
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 W = 0 while True: if i < 0: Q = [0] break elif q + p[i] == N: Q[i] = 1 if W < sum(Q): W = sum(Q) Q[i] = 0 d = Q.index(1) q -= p[d] Q[d] = 0 i = d-1 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 print(W if W != 0 else -1)