結果

問題 No.333 門松列を数え上げ
ユーザー samplelpmassamplelpmas
提出日時 2017-01-23 23:19:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 395 bytes
コンパイル時間 2,003 ms
コンパイル使用メモリ 74,980 KB
実行使用メモリ 41,376 KB
最終ジャッジ日時 2024-06-02 10:54:07
合計ジャッジ時間 3,617 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
41,248 KB
testcase_01 AC 118 ms
41,148 KB
testcase_02 AC 111 ms
40,872 KB
testcase_03 AC 100 ms
40,000 KB
testcase_04 AC 97 ms
39,540 KB
testcase_05 AC 111 ms
41,160 KB
testcase_06 AC 113 ms
41,260 KB
testcase_07 AC 110 ms
40,840 KB
testcase_08 AC 116 ms
41,376 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