結果

問題 No.689 E869120 and Constructing Array 3
ユーザー titiatitia
提出日時 2024-09-30 02:58:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 185 ms / 1,000 ms
コード長 1,140 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 77,888 KB
最終ジャッジ日時 2024-09-30 02:58:52
合計ジャッジ時間 4,274 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 146 ms
77,548 KB
testcase_01 AC 170 ms
77,200 KB
testcase_02 AC 152 ms
77,224 KB
testcase_03 AC 149 ms
77,508 KB
testcase_04 AC 170 ms
77,820 KB
testcase_05 AC 152 ms
77,628 KB
testcase_06 AC 172 ms
77,448 KB
testcase_07 AC 153 ms
77,800 KB
testcase_08 AC 154 ms
77,676 KB
testcase_09 AC 155 ms
77,888 KB
testcase_10 AC 185 ms
77,632 KB
testcase_11 AC 160 ms
77,532 KB
testcase_12 AC 181 ms
77,820 KB
testcase_13 AC 148 ms
77,568 KB
testcase_14 AC 142 ms
77,304 KB
testcase_15 AC 143 ms
77,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x=100000

import math 
L=math.floor(math.sqrt(x)) # 平方根を求める

Primelist=[i for i in range(x+1)]
Primelist[1]=0 # 1は素数でないので0にする.
 
for i in Primelist:
    if i>L:
        break
    if i==0:
        continue
    for j in range(2*i,x+1,i):
        Primelist[j]=0

Primes=[Primelist[j] for j in range(x+1) if Primelist[j]!=0]
PS=set(Primes)


for a in range(2,100):
    for b in range(a+1,100):
        for c in range(b+1,100):
            for d in range(c+1,100):
                if a+b in PS and c+d in PS:
                    if not (a+c) in PS and not (a+d) in PS and not (b+c) in PS and not (b+d) in PS:
                        LIST=[a,b,c,d]
                        #print(LIST)

LIST=[2,3,6,7]

N=int(input())

for a in range(100):
    for b in range(100):
        k=a*b
        rest=N-k

        if rest<0:
            break
        for c in range(100):
            for d in range(100):
                if rest==c*d and a+b+c+d<=250:
                    ANS=[2]*a+[3]*b+[6]*c+[7]*d

                    print(len(ANS))
                    print(*ANS)

                    exit()

                    
0