結果

問題 No.1528 Not 1
ユーザー ygd.ygd.
提出日時 2021-06-06 12:05:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 541 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 81,976 KB
実行使用メモリ 85,848 KB
最終ジャッジ日時 2024-11-22 18:15:00
合計ジャッジ時間 3,155 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,744 KB
testcase_01 AC 63 ms
79,636 KB
testcase_02 AC 49 ms
68,316 KB
testcase_03 AC 50 ms
70,268 KB
testcase_04 AC 66 ms
84,208 KB
testcase_05 AC 48 ms
64,888 KB
testcase_06 AC 54 ms
74,972 KB
testcase_07 AC 63 ms
80,076 KB
testcase_08 AC 53 ms
74,276 KB
testcase_09 AC 48 ms
65,936 KB
testcase_10 AC 52 ms
71,184 KB
testcase_11 AC 37 ms
53,216 KB
testcase_12 AC 38 ms
52,812 KB
testcase_13 AC 39 ms
52,196 KB
testcase_14 AC 38 ms
53,088 KB
testcase_15 AC 36 ms
53,436 KB
testcase_16 AC 38 ms
52,152 KB
testcase_17 AC 35 ms
53,412 KB
testcase_18 AC 64 ms
80,496 KB
testcase_19 AC 68 ms
85,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    n = int(input())
    if n == 1 or n == 2:
        print(1)
    elif n == 3 or n == 5:
        print(-1)
    else:
        if n%2 == 0:
            ans = [2*i+2 for i in range(n//2)]
        else:
            ans = []
            now = 2
            while now <= n:
                if now == 6:
                    now += 2
                else:
                    ans.append(now)
                    now += 2
            ans.append(6)
            ans.append(3)
        print(*ans)
    

if __name__ == '__main__':
    main()
0