結果

問題 No.1528 Not 1
ユーザー 河野竜也河野竜也
提出日時 2021-08-27 23:53:25
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 102 ms / 2,000 ms
コード長 689 bytes
コンパイル時間 106 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 16,384 KB
最終ジャッジ日時 2024-11-21 05:47:43
合計ジャッジ時間 3,295 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 92 ms
15,744 KB
testcase_02 AC 50 ms
12,544 KB
testcase_03 AC 58 ms
13,056 KB
testcase_04 AC 91 ms
15,360 KB
testcase_05 AC 38 ms
11,264 KB
testcase_06 AC 70 ms
13,824 KB
testcase_07 AC 94 ms
15,616 KB
testcase_08 AC 59 ms
13,056 KB
testcase_09 AC 42 ms
11,648 KB
testcase_10 AC 61 ms
13,056 KB
testcase_11 AC 29 ms
10,752 KB
testcase_12 AC 29 ms
10,752 KB
testcase_13 AC 30 ms
10,496 KB
testcase_14 AC 30 ms
10,624 KB
testcase_15 AC 30 ms
10,752 KB
testcase_16 AC 30 ms
10,624 KB
testcase_17 AC 29 ms
10,624 KB
testcase_18 AC 101 ms
16,384 KB
testcase_19 AC 102 ms
16,384 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