結果

問題 No.598 オーバーフローファンタジー
ユーザー bluemeganebluemegane
提出日時 2018-09-10 10:24:12
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 24 ms / 2,000 ms
コード長 449 bytes
コンパイル時間 2,576 ms
コンパイル使用メモリ 102,016 KB
実行使用メモリ 17,664 KB
最終ジャッジ日時 2024-12-26 04:59:43
合計ジャッジ時間 2,323 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 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
{
    public static void Main()
    {
        var n = int.Parse(Console.ReadLine().Trim());
        var x = long.Parse(Console.ReadLine().Trim());
        var a = long.Parse(Console.ReadLine().Trim());
        var b = long.Parse(Console.ReadLine().Trim());
        var w = (x + a - 1) / a;
        var x2 = (1L << (n - 1)) - x;
        var w2 = (x2 + b - 1L) / b;
        Console.WriteLine(Math.Min(w,w2));
    }
}
0