結果

問題 No.1286 Stone Skipping
ユーザー bluemeganebluemegane
提出日時 2020-11-14 11:38:48
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
実行時間 -
コード長 1,102 bytes
コンパイル時間 1,074 ms
コンパイル使用メモリ 108,580 KB
実行使用メモリ 31,380 KB
最終ジャッジ日時 2024-07-22 22:46:56
合計ジャッジ時間 5,797 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
30,796 KB
testcase_01 AC 25 ms
23,512 KB
testcase_02 AC 24 ms
23,384 KB
testcase_03 AC 24 ms
21,816 KB
testcase_04 AC 25 ms
25,928 KB
testcase_05 AC 25 ms
23,512 KB
testcase_06 AC 25 ms
25,804 KB
testcase_07 AC 25 ms
23,512 KB
testcase_08 AC 26 ms
23,772 KB
testcase_09 AC 25 ms
21,432 KB
testcase_10 AC 26 ms
23,636 KB
testcase_11 AC 25 ms
23,516 KB
testcase_12 AC 25 ms
23,772 KB
testcase_13 AC 25 ms
23,644 KB
testcase_14 AC 25 ms
21,684 KB
testcase_15 AC 25 ms
23,860 KB
testcase_16 AC 25 ms
23,980 KB
testcase_17 AC 25 ms
23,512 KB
testcase_18 AC 25 ms
23,644 KB
testcase_19 AC 24 ms
24,024 KB
testcase_20 AC 24 ms
21,812 KB
testcase_21 AC 25 ms
23,772 KB
testcase_22 AC 24 ms
21,812 KB
testcase_23 TLE -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

public class Hello
{
    static void Main()
    {
        var n = long.Parse(Console.ReadLine().Trim());
        getAns(n);
    }
    static bool check1(long n, long t)
    {
        var sum = t;
        if (sum == n) { return true; }
        while (true)
        {
            t /= 2;
            sum += t;
            if (sum == n) { return true; }
            if (t == 1) break;
        }
        return false;
    }
    static bool check0(long n, long t)
    {
        var sum = t;
        while (true)
        {
            t /= 2;
            sum += t;
            if (t == 1) break;
        }
        return sum >= n;
    }
    static long getNum(long n)
    {
        var ok = n;
        var ng = 1L;
        while (ok - ng > 1)
        {
            var mid = ng + (ok - ng) / 2;
            if (check0(n, mid)) ok = mid;
            else ng = mid;
        }
        return ok;
    }
    static void getAns(long n)
    {
        var c = getNum(n);
        for (long i = c; i <= n; i++)
        {
            if (check1(n, i)) { Console.WriteLine(i); return; }
        }
    }
}
0