結果

問題 No.643 Two Operations No.2
ユーザー ほっしいーほっしいー
提出日時 2018-02-13 00:22:09
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 417 bytes
コンパイル時間 3,661 ms
コンパイル使用メモリ 72,616 KB
実行使用メモリ 56,160 KB
最終ジャッジ日時 2023-08-17 13:07:02
合計ジャッジ時間 6,109 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
55,596 KB
testcase_01 AC 119 ms
55,568 KB
testcase_02 AC 117 ms
55,584 KB
testcase_03 AC 120 ms
55,280 KB
testcase_04 AC 116 ms
55,924 KB
testcase_05 AC 117 ms
55,572 KB
testcase_06 WA -
testcase_07 AC 117 ms
56,068 KB
testcase_08 WA -
testcase_09 AC 117 ms
55,552 KB
testcase_10 AC 119 ms
56,160 KB
testcase_11 AC 118 ms
55,484 KB
testcase_12 AC 116 ms
55,700 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)||((x==-y)&&(x<0))) {
			System.out.println(2);
		}else if((y==0)||((x==-y)&&(x>0))) {
			System.out.println(1);
		}else {
			System.out.println(-1);
		}
	}

}
0