結果
問題 | No.478 一般門松列列 |
ユーザー | ndifix |
提出日時 | 2017-01-27 22:54:11 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 4 ms / 2,000 ms |
コード長 | 292 bytes |
コンパイル時間 | 798 ms |
コンパイル使用メモリ | 55,064 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-23 16:39:31 |
合計ジャッジ時間 | 2,132 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 34 |
ソースコード
#include <iostream> using namespace std; int main(){ int n, k; cin >> n >> k; int a[n]; for(int i=0; i<n; i++){ a[i]=1; } for(int i=k+1; i<n; i++){ if(i%2==1) a[i]=a[i-1]-1; if(i%2==0) a[i]=a[i-1]+2; } for(int i=0; i<n-1; i++){ cout << a[i] << " "; } cout << a[n-1] << endl; }