結果

問題 No.333 門松列を数え上げ
ユーザー Mcpu3Mcpu3
提出日時 2018-06-23 19:48:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 219 bytes
コンパイル時間 2,020 ms
コンパイル使用メモリ 74,128 KB
実行使用メモリ 54,348 KB
最終ジャッジ日時 2024-06-30 18:32:23
合計ジャッジ時間 3,872 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,128 KB
testcase_01 AC 130 ms
54,116 KB
testcase_02 AC 131 ms
54,244 KB
testcase_03 AC 131 ms
54,128 KB
testcase_04 AC 131 ms
54,348 KB
testcase_05 AC 119 ms
52,804 KB
testcase_06 AC 129 ms
53,968 KB
testcase_07 AC 132 ms
54,028 KB
testcase_08 AC 131 ms
53,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class no333{
	public static void main(String[] args) {
		Scanner stdIn=new Scanner(System.in);
		int a=stdIn.nextInt(),b=stdIn.nextInt();
		System.out.print(a>b?1999999999-b:b-2);
	}
}
0