結果

問題 No.3 ビットすごろく
ユーザー ub_nyaoiixub_nyaoiix
提出日時 2016-12-18 10:46:17
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
実行時間 -
コード長 578 bytes
コンパイル時間 3,100 ms
コンパイル使用メモリ 102,784 KB
実行使用メモリ 34,048 KB
最終ジャッジ日時 2024-12-14 08:02:46
合計ジャッジ時間 110,554 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 21 ms
33,280 KB
testcase_01 AC 22 ms
22,784 KB
testcase_02 AC 22 ms
33,280 KB
testcase_03 TLE -
testcase_04 AC 22 ms
33,792 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 AC 23 ms
33,664 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 WA -
testcase_17 TLE -
testcase_18 AC 23 ms
33,792 KB
testcase_19 TLE -
testcase_20 WA -
testcase_21 AC 23 ms
17,536 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 23 ms
17,408 KB
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 WA -
testcase_31 AC 23 ms
17,664 KB
testcase_32 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

class Q0003
{
	public static void Main()
	{
		int n = int.Parse(Console.ReadLine());

		int bit=0;
		for (int i=n; i>0; i/=2)
		{
			if (i%2 > 0)
			{
				bit ++;
			}
		}
		if (n>2 && bit==1)
		{
			Console.WriteLine(-1);
			return;
		}

		int count = 1;
		int prev = -1;
		for(int i=1; ;)
		{
			if (i == n)
			{
				break;
			}

			int add = 0;
			for (int j=i; j>0; j/=2)
			{
				if(j%2 > 0)
				{
					add ++;
				}
			}
			if(i+add > n)
			{
				i -= add;
			}
			else
			{
				i += add;
			}

			prev = i;
			count++;
		}

		Console.WriteLine(count);
	}
}
0