結果
問題 | No.1528 Not 1 |
ユーザー | O2MT |
提出日時 | 2021-06-04 21:48:40 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 779 bytes |
コンパイル時間 | 402 ms |
コンパイル使用メモリ | 82,424 KB |
実行使用メモリ | 86,248 KB |
最終ジャッジ日時 | 2024-11-19 13:49:15 |
合計ジャッジ時間 | 3,015 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 35 ms
52,448 KB |
testcase_01 | AC | 66 ms
84,732 KB |
testcase_02 | AC | 53 ms
72,276 KB |
testcase_03 | AC | 57 ms
76,148 KB |
testcase_04 | AC | 66 ms
84,924 KB |
testcase_05 | AC | 51 ms
67,940 KB |
testcase_06 | AC | 63 ms
81,140 KB |
testcase_07 | AC | 70 ms
85,172 KB |
testcase_08 | AC | 57 ms
77,368 KB |
testcase_09 | AC | 50 ms
69,424 KB |
testcase_10 | AC | 57 ms
77,804 KB |
testcase_11 | WA | - |
testcase_12 | AC | 34 ms
52,412 KB |
testcase_13 | AC | 35 ms
52,872 KB |
testcase_14 | AC | 38 ms
53,268 KB |
testcase_15 | WA | - |
testcase_16 | AC | 36 ms
52,792 KB |
testcase_17 | AC | 35 ms
53,500 KB |
testcase_18 | AC | 72 ms
86,236 KB |
testcase_19 | AC | 70 ms
86,248 KB |
ソースコード
from math import ceil N = int(input()) if N == 2: print(-1) exit() M = ceil(N/2) evenList = [] num = -1 flg = True for i in range(2,N+1,2): if i%3 == 0: if flg: num = i flg = False else: evenList.append(i) ansList = evenList la = len(ansList) if num != -1: ansList.append(num) la += 1 five = -1 flg = True for i in range(3,N+1,3): if la == M: break if i == num: continue if i%5 == 0: if flg: five = i flg = False else: la += 1 ansList.append(i) if five != -1 and la < M: ansList.append(num) la += 1 for i in range(5,N+1,5): if la == M: break if i == num: continue ansList.append(i) if la == M: print(*ansList) else: print(-1)