結果

問題 No.1528 Not 1
ユーザー 河野竜也河野竜也
提出日時 2021-08-27 23:53:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 98 ms / 2,000 ms
コード長 689 bytes
コンパイル時間 103 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 16,512 KB
最終ジャッジ日時 2024-05-01 04:41:50
合計ジャッジ時間 3,150 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 86 ms
15,744 KB
testcase_02 AC 47 ms
12,672 KB
testcase_03 AC 55 ms
13,056 KB
testcase_04 AC 85 ms
15,360 KB
testcase_05 AC 38 ms
11,648 KB
testcase_06 AC 72 ms
13,952 KB
testcase_07 AC 93 ms
15,872 KB
testcase_08 AC 56 ms
13,312 KB
testcase_09 AC 40 ms
11,904 KB
testcase_10 AC 57 ms
13,184 KB
testcase_11 AC 30 ms
10,752 KB
testcase_12 AC 28 ms
10,752 KB
testcase_13 AC 29 ms
10,752 KB
testcase_14 AC 28 ms
10,752 KB
testcase_15 AC 28 ms
10,752 KB
testcase_16 AC 28 ms
10,752 KB
testcase_17 AC 28 ms
10,752 KB
testcase_18 AC 97 ms
16,512 KB
testcase_19 AC 98 ms
16,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def prime_factorize(n):
    a = []
    while n % 2 == 0:
        a.append(2)
        n //= 2
    f = 3
    while f * f <= n:
        if n % f == 0:
            a.append(f)
            n //= f
        else:
            f += 2
    if n != 1:
        a.append(n)
    return a
n=int(input())
if n%2==0:
  ans=[]
  for i in range(1,n//2+1):
    ans.append(2*i)
  print(*ans)
else:
  if n==1:
    print(1)
  else:
    m=n-1
    z=prime_factorize(m)
    x=set(z)
    if len(x)==1:
      print(-1)
    else:
      for i in range(len(z)):
        if z[i]!=2:
          w=z[i]
          break
      ans=[]
      for i in range(1,n//2+1):
        ans.append(2*i)
      ans.append(w)
      print(*ans)
0