結果

問題 No.1528 Not 1
ユーザー yakeshibayakeshiba
提出日時 2021-06-09 21:01:25
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 660 bytes
コンパイル時間 388 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 85,888 KB
最終ジャッジ日時 2024-05-06 14:15:39
合計ジャッジ時間 3,207 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 AC 79 ms
84,736 KB
testcase_02 AC 57 ms
69,632 KB
testcase_03 AC 61 ms
72,576 KB
testcase_04 AC 75 ms
84,224 KB
testcase_05 AC 52 ms
64,640 KB
testcase_06 AC 67 ms
77,696 KB
testcase_07 AC 80 ms
84,480 KB
testcase_08 AC 63 ms
74,112 KB
testcase_09 AC 57 ms
66,560 KB
testcase_10 AC 65 ms
74,624 KB
testcase_11 WA -
testcase_12 AC 40 ms
51,712 KB
testcase_13 AC 39 ms
51,840 KB
testcase_14 AC 40 ms
51,712 KB
testcase_15 AC 40 ms
51,968 KB
testcase_16 AC 38 ms
52,096 KB
testcase_17 AC 37 ms
51,840 KB
testcase_18 AC 77 ms
85,888 KB
testcase_19 AC 78 ms
85,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
ans = []
if n < 10:
    if n%2 == 0:
        for i in range(2,n+1,2):
            ans.append(i)
    else:
        if n <= 5:
            print(-1)
            exit()
        else:
            ans.append(3)
            ans.append(6)
            for i in range(2,n,2):
                if len(ans) == -(-n//2):
                    break
                if i == 6:
                    continue
                ans.append(i)
    print(*ans)
elif n >= 10:
    ans.append(5)
    ans.append(10)
    for i in range(2,n,2):
        if len(ans) == -(-n//2):
            break
        if i == 10:
            continue
        ans.append(i)
    print(*ans)
0