結果

問題 No.478 一般門松列列
ユーザー hotpepsihotpepsi
提出日時 2017-06-03 00:20:06
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 4 ms / 2,000 ms
コード長 317 bytes
コンパイル時間 547 ms
コンパイル使用メモリ 54,432 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-22 03:45:38
合計ジャッジ時間 1,851 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 34
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>

using namespace std;

int main(int argc, char *argv[]) {
	int n, k, s = 1;
	cin >> n >> k;
	for (int i = 0; i < k; ++i) {
		cout << " " << s;
		s += 2;
	}
	for (int i = k; i < n; ++i) {
		const int p[] = { 2, -1, 2, -3 };
		cout << " " << s;
		s += p[(i - k) % 4];
	}
	cout << endl;
	return 0;
}
0