結果
問題 | No.3 ビットすごろく |
ユーザー | ototonari |
提出日時 | 2017-03-18 02:16:19 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,666 bytes |
コンパイル時間 | 815 ms |
コンパイル使用メモリ | 109,960 KB |
実行使用メモリ | 26,072 KB |
最終ジャッジ日時 | 2024-07-04 13:53:35 |
合計ジャッジ時間 | 3,171 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 24 ms
23,780 KB |
testcase_01 | AC | 24 ms
23,772 KB |
testcase_02 | AC | 24 ms
26,072 KB |
testcase_03 | AC | 25 ms
25,712 KB |
testcase_04 | AC | 23 ms
23,664 KB |
testcase_05 | AC | 25 ms
23,776 KB |
testcase_06 | AC | 25 ms
25,592 KB |
testcase_07 | AC | 24 ms
25,568 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 26 ms
23,432 KB |
testcase_13 | AC | 25 ms
21,564 KB |
testcase_14 | AC | 25 ms
23,564 KB |
testcase_15 | AC | 27 ms
23,772 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 24 ms
23,648 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 24 ms
23,776 KB |
testcase_22 | AC | 27 ms
25,940 KB |
testcase_23 | AC | 27 ms
23,600 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 25 ms
23,860 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 25 ms
25,700 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; using System.Linq; using System.Text; using System.Threading.Tasks; namespace yukicoder { class Program { static void Main(string[] args) { int N = int.Parse(Console.ReadLine()); int c = 1; int pos = 1; int[] flag = new int[N]; foreach(int i in flag) { flag[i] = 0; } flag[0] = 1; while(pos != N) { //進む場合N以下になるかどうか if ((pos + bits(pos)) <= N) { flag[pos] = 1; pos += bits(pos); c++; } else //戻る処理 { //戻るところが前の所の場合 if (flag[pos - bits(pos)] == 1) { Console.WriteLine("{0}", "-1"); break; } flag[pos] = 1; pos -= bits(pos); c++; } } if (pos == N) Console.WriteLine("{0}", c); Console.ReadLine(); } //10進数を2進数にした時の1ビットの数を返す関数 static int bits(int num) { string bits = ""; for(int i = num;0 < i;i /= 2) { if (i % 2 == 1) bits += (i % 2); } return num = bits.Length; } } }