結果

問題 No.333 門松列を数え上げ
ユーザー atkrymatkrym
提出日時 2016-10-22 18:56:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 446 bytes
コンパイル時間 1,780 ms
コンパイル使用メモリ 73,816 KB
実行使用メモリ 41,260 KB
最終ジャッジ日時 2024-05-02 22:15:51
合計ジャッジ時間 3,288 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
41,232 KB
testcase_01 AC 103 ms
40,996 KB
testcase_02 AC 106 ms
41,128 KB
testcase_03 AC 114 ms
40,780 KB
testcase_04 AC 102 ms
41,156 KB
testcase_05 AC 104 ms
41,260 KB
testcase_06 AC 101 ms
41,116 KB
testcase_07 AC 111 ms
40,980 KB
testcase_08 AC 99 ms
40,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;
import java.text.*;

public class Main {
    private static Scanner sc = new Scanner(System.in);
    public static void main(String[] args) throws Exception {
        int a = sc.nextInt();
        int b = sc.nextInt();
        
        int ret;
        if (a < b) {
            ret = b - 2;
        } else {
            ret = 2000000000 - b - 1;
        }
        
        System.out.println(ret);
    }
}
0