結果

問題 No.478 一般門松列列
ユーザー fiordfiord
提出日時 2017-02-27 22:06:58
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 1,140 bytes
コンパイル時間 2,188 ms
コンパイル使用メモリ 104,960 KB
実行使用メモリ 20,172 KB
最終ジャッジ日時 2024-06-11 19:55:12
合計ジャッジ時間 4,967 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
18,688 KB
testcase_01 AC 27 ms
18,560 KB
testcase_02 AC 26 ms
18,304 KB
testcase_03 AC 25 ms
18,688 KB
testcase_04 AC 24 ms
18,688 KB
testcase_05 AC 24 ms
18,560 KB
testcase_06 AC 25 ms
18,688 KB
testcase_07 AC 25 ms
18,688 KB
testcase_08 AC 26 ms
18,688 KB
testcase_09 AC 26 ms
18,816 KB
testcase_10 AC 26 ms
18,560 KB
testcase_11 AC 78 ms
19,852 KB
testcase_12 AC 79 ms
20,056 KB
testcase_13 AC 80 ms
19,896 KB
testcase_14 AC 69 ms
20,172 KB
testcase_15 AC 68 ms
19,956 KB
testcase_16 AC 42 ms
19,200 KB
testcase_17 AC 66 ms
19,948 KB
testcase_18 AC 55 ms
19,584 KB
testcase_19 AC 74 ms
19,996 KB
testcase_20 AC 64 ms
19,840 KB
testcase_21 AC 55 ms
19,572 KB
testcase_22 AC 44 ms
19,296 KB
testcase_23 AC 44 ms
19,064 KB
testcase_24 AC 52 ms
19,584 KB
testcase_25 AC 63 ms
19,860 KB
testcase_26 AC 30 ms
19,072 KB
testcase_27 AC 32 ms
18,816 KB
testcase_28 AC 29 ms
18,944 KB
testcase_29 AC 29 ms
18,816 KB
testcase_30 AC 49 ms
19,456 KB
testcase_31 AC 45 ms
19,072 KB
testcase_32 AC 39 ms
19,328 KB
testcase_33 AC 40 ms
19,200 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApplicationSharp
{
	class Program
	{
		static void Print(List<int> content)
		{
			int n = content.Count();
			for (int i = 0; i < n-1; i++) Console.Write("{0} ", content[i]);
			Console.WriteLine(content[n - 1]);
		}
		static void Main(string[] args)
		{
			int n, k;
			string[] s =Console.ReadLine().Split(' ');
			n = int.Parse(s[0]);    k = int.Parse(s[1]);
			int use = n - k - 2;
			List<int> ret=new List<int>();
			if (use > 0)
			{
				if (use % 2 == 0) ret = new List<int> { 0, 2, 1 };
				else ret = new List<int> { 1, 0, 2 };
				use--;
				int i = 3;
				while (use>0)
				{
					int diff = ret[i - 1] - ret[i - 2];
					if (Math.Abs(diff) == 2)
					{
						ret.Add(ret[i - 1] + (diff > 0 ? -1 : 1));
					}
					else
					{
						ret.Add(ret[i - 1] + (diff > 0 ? -2 : 2));
					}
					use--;	i++;
				}
				for (; i < n; i++)
				{
					ret.Add(2 * ret[i - 1] - ret[i - 2]);
				}
				Print(ret);
			}
			else
			{
				for (int i = 1; i <= n; i++) ret.Add(i);
				Print(ret);
			}
		}
	}
}
0