結果

問題 No.643 Two Operations No.2
ユーザー ほっしいーほっしいー
提出日時 2018-02-13 00:29:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 422 bytes
コンパイル時間 3,613 ms
コンパイル使用メモリ 75,076 KB
実行使用メモリ 41,336 KB
最終ジャッジ日時 2024-05-04 20:18:58
合計ジャッジ時間 5,936 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
41,216 KB
testcase_01 AC 108 ms
41,232 KB
testcase_02 AC 102 ms
40,740 KB
testcase_03 AC 104 ms
41,244 KB
testcase_04 AC 114 ms
41,268 KB
testcase_05 AC 113 ms
41,020 KB
testcase_06 AC 109 ms
40,896 KB
testcase_07 AC 103 ms
41,072 KB
testcase_08 AC 105 ms
41,336 KB
testcase_09 AC 102 ms
40,936 KB
testcase_10 AC 94 ms
40,100 KB
testcase_11 AC 102 ms
40,756 KB
testcase_12 AC 111 ms
41,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class No643 {

	public static void main(String[] args) {
		Scanner sc=new Scanner(System.in);
		int x=Integer.parseInt(sc.next());
		int y=Integer.parseInt(sc.next());
		if(x==y) {
			System.out.println(0);
		}else if(x==0) {
			System.out.println(2);
		}else if(y==0) {
			System.out.println(1);
		}else if(x==-y){
			System.out.println(3);
		}else{
			System.out.println(-1);
		}
	}

}

0