結果

問題 No.1528 Not 1
ユーザー wolgnikwolgnik
提出日時 2021-06-04 20:36:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 330 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 95,872 KB
最終ジャッジ日時 2024-04-30 00:07:54
合計ジャッジ時間 2,914 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,352 KB
testcase_01 AC 90 ms
93,184 KB
testcase_02 AC 65 ms
73,600 KB
testcase_03 AC 65 ms
76,160 KB
testcase_04 AC 86 ms
93,056 KB
testcase_05 AC 57 ms
66,048 KB
testcase_06 AC 73 ms
83,840 KB
testcase_07 AC 89 ms
93,440 KB
testcase_08 AC 71 ms
78,336 KB
testcase_09 AC 63 ms
69,376 KB
testcase_10 AC 69 ms
79,104 KB
testcase_11 AC 40 ms
51,968 KB
testcase_12 AC 40 ms
52,096 KB
testcase_13 AC 41 ms
52,096 KB
testcase_14 AC 41 ms
52,096 KB
testcase_15 AC 40 ms
52,224 KB
testcase_16 AC 40 ms
52,096 KB
testcase_17 AC 40 ms
52,352 KB
testcase_18 AC 90 ms
95,616 KB
testcase_19 AC 89 ms
95,872 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