結果

問題 No.643 Two Operations No.2
ユーザー ほっしいーほっしいー
提出日時 2018-02-12 23:41:01
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 465 bytes
コンパイル時間 3,479 ms
コンパイル使用メモリ 79,608 KB
実行使用メモリ 41,600 KB
最終ジャッジ日時 2024-05-04 18:14:15
合計ジャッジ時間 5,913 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,316 KB
testcase_01 AC 126 ms
41,532 KB
testcase_02 AC 126 ms
41,392 KB
testcase_03 AC 123 ms
41,228 KB
testcase_04 AC 126 ms
41,600 KB
testcase_05 AC 125 ms
41,144 KB
testcase_06 WA -
testcase_07 AC 124 ms
41,336 KB
testcase_08 WA -
testcase_09 AC 122 ms
41,196 KB
testcase_10 AC 123 ms
41,136 KB
testcase_11 WA -
testcase_12 WA -
権限があれば一括ダウンロードができます

ソースコード

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)&&(y>0))||((y==0)&&(x<0))||(x==-y)&&(x<0)) {
			System.out.println(2);
		}else if(((x==0)&&(y<0))||((y==0)&&(x>0))||(x==-y)&&(x>0)) {
			System.out.println(1);
		}else {
			System.out.println(-1);
		}
	}

}
0