結果

問題 No.642 Two Operations No.1
ユーザー wagashi1349wagashi1349
提出日時 2018-02-22 16:32:36
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 638 bytes
コンパイル時間 4,324 ms
コンパイル使用メモリ 107,056 KB
実行使用メモリ 25,800 KB
最終ジャッジ日時 2024-10-01 20:37:19
合計ジャッジ時間 1,698 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
23,984 KB
testcase_01 AC 22 ms
25,664 KB
testcase_02 AC 22 ms
23,724 KB
testcase_03 AC 22 ms
23,648 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 24 ms
23,776 KB
testcase_14 AC 23 ms
23,984 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

namespace ConsoleApp1
{
    class Program
    {
        static void Main(string[] args)
        {
            Int64 N = Int64.Parse(Console.ReadLine());
            Int64 X = 1;
            Int64 time = 0;
            if (N == 0)
            {
                Console.WriteLine(1);
                return;
            }
            if (N == 1)
            {
                Console.WriteLine(0);
                return;
            }

            while(N > X)
            {
                X = X << 1;
                time++;
            }

            time += X - N;
            Console.WriteLine(time);
        }
    }
}
0