結果

問題 No.2088 数当てゲーム
ユーザー bluemeganebluemegane
提出日時 2022-09-30 22:32:37
言語 C#(csc)
(csc 3.9.0)
結果
RE  
実行時間 -
コード長 302 bytes
コンパイル時間 1,000 ms
コンパイル使用メモリ 65,224 KB
実行使用メモリ 22,864 KB
最終ジャッジ日時 2023-08-24 16:07:18
合計ジャッジ時間 3,857 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 55 ms
20,620 KB
testcase_02 AC 54 ms
20,716 KB
testcase_03 AC 54 ms
20,696 KB
testcase_04 AC 56 ms
20,628 KB
testcase_05 AC 54 ms
22,696 KB
testcase_06 AC 54 ms
20,592 KB
testcase_07 AC 55 ms
20,588 KB
testcase_08 AC 54 ms
22,664 KB
testcase_09 AC 54 ms
20,632 KB
testcase_10 AC 54 ms
18,648 KB
testcase_11 AC 54 ms
20,628 KB
testcase_12 AC 54 ms
20,624 KB
testcase_13 AC 54 ms
20,624 KB
testcase_14 AC 56 ms
20,656 KB
testcase_15 AC 54 ms
20,548 KB
testcase_16 AC 58 ms
20,576 KB
testcase_17 AC 58 ms
22,864 KB
testcase_18 AC 56 ms
20,572 KB
testcase_19 AC 57 ms
20,636 KB
testcase_20 AC 57 ms
20,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

using static System.Math;
using System.Collections.Generic;
using System.Linq;
using System;

public class Hello
{
    static void Main()
    {
        var a = long.Parse(Console.ReadLine().Trim());
        var b = long.Parse(Console.ReadLine().Trim());
        Console.WriteLine(b / (1 - a));
    }
}
0