結果

問題 No.333 門松列を数え上げ
ユーザー samplelpmassamplelpmas
提出日時 2017-01-23 23:19:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 395 bytes
コンパイル時間 2,014 ms
コンパイル使用メモリ 71,472 KB
実行使用メモリ 56,416 KB
最終ジャッジ日時 2023-08-24 21:37:37
合計ジャッジ時間 3,908 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
56,060 KB
testcase_01 AC 124 ms
55,672 KB
testcase_02 AC 121 ms
56,096 KB
testcase_03 AC 122 ms
55,996 KB
testcase_04 AC 123 ms
56,416 KB
testcase_05 AC 122 ms
55,852 KB
testcase_06 AC 122 ms
55,984 KB
testcase_07 AC 118 ms
56,248 KB
testcase_08 AC 122 ms
55,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        int left = sc.nextInt();
        int middle = sc.nextInt();

        if (left < middle) {
            System.out.println(middle - 2);
        } else if (middle < left) {
            System.out.println(2000000000 - middle - 1);
        }

    }

}
0