結果
問題 | No.3 ビットすごろく |
ユーザー | the10hours |
提出日時 | 2015-06-10 16:37:57 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,394 bytes |
コンパイル時間 | 667 ms |
コンパイル使用メモリ | 106,960 KB |
実行使用メモリ | 27,976 KB |
最終ジャッジ日時 | 2024-07-06 15:22:33 |
合計ジャッジ時間 | 2,158 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 20 ms
23,652 KB |
testcase_01 | WA | - |
testcase_02 | AC | 21 ms
23,800 KB |
testcase_03 | AC | 19 ms
23,516 KB |
testcase_04 | WA | - |
testcase_05 | AC | 20 ms
23,520 KB |
testcase_06 | AC | 19 ms
21,336 KB |
testcase_07 | AC | 21 ms
25,792 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 21 ms
25,808 KB |
testcase_13 | AC | 21 ms
23,728 KB |
testcase_14 | AC | 19 ms
23,520 KB |
testcase_15 | AC | 20 ms
23,748 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 20 ms
25,916 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 19 ms
23,648 KB |
testcase_22 | AC | 20 ms
23,776 KB |
testcase_23 | AC | 19 ms
23,724 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 20 ms
23,776 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
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; namespace yukicoder { class yc { static void Main() { //8192 int N = int.Parse(Console.ReadLine()); int cout = 1; int place = 1; int move = 0; int before = 0; bool end = false; while (!end) { for (int i = 8192; 0 < i; i /= 2) { if ((place & i) != 0) { move++; } } if (place == N) { Console.WriteLine(cout); break; } if (place + move > N) { before = place; place -= move; cout++; } if (place + move <= N) { place += move; cout++; if (place == before) { Console.WriteLine(-1); break; } else { before = 0; } } move = 0; } } } }