結果

問題 No.3 ビットすごろく
ユーザー AdamantiteAdamantite
提出日時 2023-06-29 20:47:43
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 861 bytes
コンパイル時間 16,267 ms
コンパイル使用メモリ 168,084 KB
実行使用メモリ 186,260 KB
最終ジャッジ日時 2024-07-06 10:55:47
合計ジャッジ時間 18,803 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
29,440 KB
testcase_01 AC 46 ms
29,824 KB
testcase_02 AC 45 ms
29,288 KB
testcase_03 AC 46 ms
29,696 KB
testcase_04 AC 45 ms
29,312 KB
testcase_05 AC 44 ms
29,696 KB
testcase_06 AC 44 ms
29,824 KB
testcase_07 AC 44 ms
29,312 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 48 ms
29,812 KB
testcase_13 AC 46 ms
29,568 KB
testcase_14 AC 46 ms
29,784 KB
testcase_15 AC 47 ms
29,824 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 44 ms
29,824 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 54 ms
29,816 KB
testcase_22 AC 51 ms
29,696 KB
testcase_23 AC 46 ms
29,812 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 47 ms
29,276 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 46 ms
29,696 KB
testcase_32 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (81 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;
using System.Linq;

namespace No00003_BitSugoroku
{
    internal class Program
    {
        static void Main(string[] args) {
            int n = int.Parse(Console.ReadLine());
            bool[] map = new bool[n];
            int index = 1;
            int count = 0;
            while (true) {
                count++;
                if (index == n) {
                    break;
                }
                if (map[index]) {
                    count = -1;
                    break;
                }
                map[index] = true;
                int diff = Convert.ToString(index, 2).Count(x => x == '1');
                if (index + diff <= n) {
                    index += diff;
                } else {
                    index -= diff;
                }
            }
            Console.WriteLine(count);
        }
    }
}
0