結果
問題 | No.3 ビットすごろく |
ユーザー | AreTrash |
提出日時 | 2016-04-09 03:50:20 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,028 bytes |
コンパイル時間 | 1,177 ms |
コンパイル使用メモリ | 112,228 KB |
実行使用メモリ | 26,092 KB |
最終ジャッジ日時 | 2024-10-04 05:02:15 |
合計ジャッジ時間 | 4,592 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 25 ms
23,916 KB |
testcase_01 | AC | 25 ms
23,664 KB |
testcase_02 | AC | 25 ms
25,732 KB |
testcase_03 | AC | 33 ms
25,772 KB |
testcase_04 | AC | 26 ms
23,920 KB |
testcase_05 | AC | 64 ms
23,924 KB |
testcase_06 | AC | 35 ms
21,680 KB |
testcase_07 | AC | 29 ms
25,636 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 63 ms
25,700 KB |
testcase_13 | AC | 32 ms
23,920 KB |
testcase_14 | AC | 115 ms
23,660 KB |
testcase_15 | AC | 161 ms
23,920 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 30 ms
25,508 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 25 ms
23,660 KB |
testcase_22 | AC | 117 ms
26,092 KB |
testcase_23 | AC | 166 ms
23,912 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 24 ms
25,436 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 25 ms
25,704 KB |
testcase_32 | WA | - |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Collections.Generic; namespace No3_1{ public class Program{ private static List<int> stack = new List<int>(); public static void Main(string[] args){ var result = Function(int.Parse(Console.ReadLine()), 1, 1); if(result == int.MaxValue) result = -1; Console.WriteLine(result); } public static int Function(int input, int place, int cnt){ if(place == input) return cnt; if(cnt >= input || stack.Contains(place) || place < 1 || input < place) return int.MaxValue; stack.Add(place); var result = Math.Min(Function(input, place + BitOne(place), cnt + 1), Function(input, place - BitOne(place), cnt + 1)); return result; } public static int BitOne(int num){ var result = 0; while(true){ if(num % 2 == 1) result++; if((num /= 2) == 0) break; } return result; } } }