結果
問題 | No.3 ビットすごろく |
ユーザー | Wataru Maeda |
提出日時 | 2018-10-03 20:12:34 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,192 bytes |
コンパイル時間 | 770 ms |
コンパイル使用メモリ | 108,236 KB |
実行使用メモリ | 29,568 KB |
最終ジャッジ日時 | 2024-10-12 10:27:02 |
合計ジャッジ時間 | 2,604 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 26 ms
19,584 KB |
testcase_01 | AC | 25 ms
19,200 KB |
testcase_02 | AC | 25 ms
19,200 KB |
testcase_03 | AC | 26 ms
19,968 KB |
testcase_04 | AC | 25 ms
19,328 KB |
testcase_05 | AC | 26 ms
19,696 KB |
testcase_06 | AC | 25 ms
19,456 KB |
testcase_07 | AC | 25 ms
19,328 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 26 ms
19,712 KB |
testcase_13 | AC | 25 ms
19,584 KB |
testcase_14 | AC | 27 ms
19,856 KB |
testcase_15 | AC | 27 ms
19,748 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 25 ms
19,584 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 25 ms
19,456 KB |
testcase_22 | AC | 26 ms
19,348 KB |
testcase_23 | AC | 27 ms
19,244 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 24 ms
19,456 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 25 ms
19,456 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 Problem003 { class Program { static void Main(string[] args) { var n = int.Parse(Console.ReadLine()); Console.WriteLine(Process(n, 1, new HashSet<int>())); } static int Process(int n, int pos, HashSet<int> db, int depth = 1) { if (db.Contains(pos)) return -1; db.Add(pos); if (pos == n) return depth; var steps = Count1(pos); // 前に移動 var next = pos + steps; if (next <= n) { var ans = Process(n, next, db, depth + 1); if (ans > 0) return ans; } // 後ろに移動 next = pos - steps; if (next > 1) { var ans = Process(n, next, db, depth + 1); if (ans > 0) return ans; } return -1; } static int Count1(int v) { var count = 0; while (v != 0) { if ((v & 1) == 1) count++; v >>= 1; } return count; } } }