結果

問題 No.333 門松列を数え上げ
ユーザー shinwisteriashinwisteria
提出日時 2018-03-14 20:02:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 303 bytes
コンパイル時間 3,858 ms
コンパイル使用メモリ 74,028 KB
実行使用メモリ 41,332 KB
最終ジャッジ日時 2024-05-06 16:49:32
合計ジャッジ時間 5,761 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,168 KB
testcase_01 AC 132 ms
41,308 KB
testcase_02 AC 135 ms
41,044 KB
testcase_03 AC 128 ms
41,216 KB
testcase_04 AC 132 ms
41,328 KB
testcase_05 AC 128 ms
41,128 KB
testcase_06 AC 137 ms
41,168 KB
testcase_07 AC 119 ms
40,164 KB
testcase_08 AC 132 ms
41,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package m.shin;
import java.util.Scanner;
public class Con339 {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int a = s.nextInt() , b = s.nextInt();
		s.close();

		int d;
		if(a < b){
			d = b - 2;
		}else{
			d = 1999999999 - b;
		}
		System.out.println(d);

	}

}
0