結果

問題 No.478 一般門松列列
ユーザー dnishdnish
提出日時 2017-07-10 13:14:13
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 232 bytes
コンパイル時間 1,571 ms
コンパイル使用メモリ 166,912 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-07 06:59:53
合計ジャッジ時間 2,944 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 34
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define REP(i,n,N) for(int i=(n);i<(int) N;i++)
using namespace std;

int main() {
	int n,k;
	cin>>n>>k;
	int a[]={1,3,2,4};
	REP(i,0,k) cout<<"1 ";
	REP(i,0,n-k) cout<<a[i%4]<<" ";
	cout<<endl;
	return 0;
}
0