結果

問題 No.1528 Not 1
ユーザー wolgnikwolgnik
提出日時 2021-06-04 20:36:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 330 bytes
コンパイル時間 454 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 95,896 KB
最終ジャッジ日時 2024-11-19 09:39:26
合計ジャッジ時間 3,018 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,120 KB
testcase_01 AC 69 ms
93,388 KB
testcase_02 AC 52 ms
74,828 KB
testcase_03 AC 52 ms
76,692 KB
testcase_04 AC 69 ms
93,484 KB
testcase_05 AC 47 ms
66,264 KB
testcase_06 AC 58 ms
84,296 KB
testcase_07 AC 72 ms
93,308 KB
testcase_08 AC 55 ms
79,404 KB
testcase_09 AC 52 ms
69,868 KB
testcase_10 AC 57 ms
79,852 KB
testcase_11 AC 36 ms
52,548 KB
testcase_12 AC 36 ms
53,568 KB
testcase_13 AC 36 ms
52,200 KB
testcase_14 AC 36 ms
52,364 KB
testcase_15 AC 35 ms
52,580 KB
testcase_16 AC 34 ms
53,236 KB
testcase_17 AC 36 ms
52,616 KB
testcase_18 AC 76 ms
95,508 KB
testcase_19 AC 72 ms
95,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from math import gcd
input = sys.stdin.readline
N = int(input())
if N == 1:
  print(1)
  exit(0)
if N == 2:
  print(1)
  exit(0)
res = [i * 2 for i in range(1, -(-N // 2))]
s = set(res)
for i in range(1, N + 1):
  if i in s: continue
  if gcd(i, res[-1]) > 1:
    res.append(i)
    print(*res)
    break
else: print(-1)
0