結果

問題 No.333 門松列を数え上げ
ユーザー matsuyoshi30matsuyoshi30
提出日時 2016-01-15 22:37:32
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 363 bytes
コンパイル時間 2,012 ms
コンパイル使用メモリ 74,304 KB
実行使用メモリ 54,312 KB
最終ジャッジ日時 2024-09-19 19:10:41
合計ジャッジ時間 3,189 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
41,228 KB
testcase_01 AC 108 ms
41,084 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Test {
	public static void main(String[] args) {
		Scanner in = new Scanner(System.in);
		String str1 = in.next();
		String str2 = in.next();
		int A = Integer.parseInt(str1);
		int B = Integer.parseInt(str2);
		
		if(A > B) {
			System.out.println(2000000000 - A - B + 1);
		}
		if(A < B) {
			System.out.println(B - A);
		}
	}
}
0