結果

問題 No.863 計算量
ユーザー iwa_choco_168iwa_choco_168
提出日時 2019-12-08 13:34:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 1,000 ms
コード長 301 bytes
コンパイル時間 1,947 ms
コンパイル使用メモリ 74,216 KB
実行使用メモリ 54,124 KB
最終ジャッジ日時 2024-06-09 14:03:30
合計ジャッジ時間 4,707 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
53,904 KB
testcase_01 AC 125 ms
53,744 KB
testcase_02 AC 124 ms
53,956 KB
testcase_03 AC 120 ms
54,012 KB
testcase_04 AC 124 ms
53,880 KB
testcase_05 AC 120 ms
54,124 KB
testcase_06 AC 123 ms
54,108 KB
testcase_07 AC 108 ms
53,044 KB
testcase_08 AC 123 ms
53,828 KB
testcase_09 AC 119 ms
53,848 KB
testcase_10 AC 111 ms
52,744 KB
testcase_11 AC 110 ms
52,896 KB
testcase_12 AC 121 ms
54,064 KB
testcase_13 AC 120 ms
54,024 KB
testcase_14 AC 125 ms
53,920 KB
testcase_15 AC 125 ms
53,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int a = Integer.parseInt(sc.next());
        int b = Integer.parseInt(sc.next()) / 40;
        int ans = (a == b)? 1 : 2;
        System.out.println(ans);
    }
}
0