結果
問題 |
No.3287 Golden Ring
|
ユーザー |
|
提出日時 | 2025-10-03 22:16:25 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 254 bytes |
コンパイル時間 | 281 ms |
コンパイル使用メモリ | 82,256 KB |
実行使用メモリ | 63,380 KB |
最終ジャッジ日時 | 2025-10-03 22:16:28 |
合計ジャッジ時間 | 2,246 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 13 WA * 1 |
ソースコード
N=int(input()) if N%2==0: e=[] o=[] for i in range(1,N+1): if i%2==0:e.append(i) else:o.append(i) o.sort(reverse=True) ans=e+o else: ans=[] for i in range(1,N+1): ans.append(i) print("Yes") print(*ans)