結果

問題 No.863 計算量
ユーザー bluemeganebluemegane
提出日時 2021-04-19 09:30:38
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 56 ms / 1,000 ms
コード長 234 bytes
コンパイル時間 746 ms
コンパイル使用メモリ 65,120 KB
実行使用メモリ 22,804 KB
最終ジャッジ日時 2023-09-17 08:15:27
合計ジャッジ時間 2,530 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
20,624 KB
testcase_01 AC 55 ms
22,780 KB
testcase_02 AC 55 ms
20,604 KB
testcase_03 AC 56 ms
20,692 KB
testcase_04 AC 55 ms
20,864 KB
testcase_05 AC 55 ms
20,708 KB
testcase_06 AC 55 ms
18,824 KB
testcase_07 AC 55 ms
20,660 KB
testcase_08 AC 55 ms
18,828 KB
testcase_09 AC 54 ms
20,672 KB
testcase_10 AC 55 ms
22,712 KB
testcase_11 AC 55 ms
20,612 KB
testcase_12 AC 55 ms
22,644 KB
testcase_13 AC 55 ms
20,872 KB
testcase_14 AC 55 ms
22,804 KB
testcase_15 AC 56 ms
20,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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 > a * 40 * 4 ? 2 : 1);
    }
}
0