結果
問題 | No.689 E869120 and Constructing Array 3 |
ユーザー | kobaya0514 |
提出日時 | 2018-05-18 23:49:28 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 517 bytes |
コンパイル時間 | 120 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 18,688 KB |
最終ジャッジ日時 | 2024-06-28 14:08:35 |
合計ジャッジ時間 | 17,327 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 860 ms
18,432 KB |
testcase_01 | AC | 858 ms
18,560 KB |
testcase_02 | AC | 856 ms
18,432 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 862 ms
18,688 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 852 ms
18,688 KB |
testcase_11 | WA | - |
testcase_12 | AC | 877 ms
18,432 KB |
testcase_13 | AC | 858 ms
18,560 KB |
testcase_14 | AC | 926 ms
18,688 KB |
testcase_15 | AC | 872 ms
18,432 KB |
ソースコード
K=int(input()) prime=[True for _ in range(1000001)] prime[0]=False prime[1]=False ansp=[] for i in range(2,999999): if prime[i]: cnt=2 while i*cnt<1000001: prime[i*cnt]=False cnt+=1 if i<999999 and prime[i+2]: ansp.append(i) if len(ansp)>250: break ans2=0 ansprime=0 for i in range(1,250): for j in range(1,250): if i*j==K and i+j<=250: ans2=i ansprime=j ans=[2]*ans2+ansp[:ansprime] if K==0: print(1) print(2) else: print(len(ans)) print(*ans)