結果
問題 | No.1528 Not 1 |
ユーザー | yakeshiba |
提出日時 | 2021-06-09 20:55:46 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 545 bytes |
コンパイル時間 | 310 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 85,888 KB |
最終ジャッジ日時 | 2024-11-28 21:21:18 |
合計ジャッジ時間 | 4,280 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
51,328 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 68 ms
84,352 KB |
testcase_05 | AC | 52 ms
64,640 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 57 ms
73,472 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 39 ms
51,840 KB |
testcase_13 | AC | 38 ms
52,224 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 73 ms
85,888 KB |
ソースコード
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+1,2): if i == 6: continue ans.append(i) print(ans) elif n >= 10: ans.append(5) ans.append(10) for i in range(2,n+1,2): if i == 10: continue ans.append(i) print(*ans)