結果
問題 | No.1528 Not 1 |
ユーザー |
|
提出日時 | 2021-06-04 20:14:01 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 242 bytes |
コンパイル時間 | 1,630 ms |
コンパイル使用メモリ | 165,812 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-19 08:18:46 |
合計ジャッジ時間 | 4,463 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 1 |
other | AC * 3 WA * 16 |
ソースコード
#include<bits/stdc++.h>using namespace std;using ll = long long int;int main(){int n;cin>>n;if(n%2==1&&n<6){cout<<-1<<endl;}else{for(int i=2;i<=n;i+=2){cout<<n<<" ";}}}