結果

問題 No.333 門松列を数え上げ
ユーザー neko_the_shadowneko_the_shadow
提出日時 2019-03-01 10:42:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 393 bytes
コンパイル時間 2,966 ms
コンパイル使用メモリ 74,040 KB
実行使用メモリ 54,136 KB
最終ジャッジ日時 2024-06-23 11:58:09
合計ジャッジ時間 4,051 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
53,912 KB
testcase_01 AC 112 ms
53,004 KB
testcase_02 AC 126 ms
53,868 KB
testcase_03 AC 126 ms
54,136 KB
testcase_04 AC 115 ms
54,108 KB
testcase_05 AC 128 ms
53,976 KB
testcase_06 AC 114 ms
52,912 KB
testcase_07 AC 125 ms
53,992 KB
testcase_08 AC 126 ms
54,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner stdin = new Scanner(System.in);
        long a = stdin.nextLong();
        long b = stdin.nextLong();
        
        if (a < b) { // b > c
            System.out.println(b - 2);
        } else { // a > b && b < c
            System.out.println(2000000000 - b - 1);
        }
    }
}
0