結果

問題 No.643 Two Operations No.2
ユーザー denderaKawazudenderaKawazu
提出日時 2018-02-14 15:59:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 971 bytes
コンパイル時間 2,123 ms
コンパイル使用メモリ 72,492 KB
実行使用メモリ 56,280 KB
最終ジャッジ日時 2023-08-23 12:05:17
合計ジャッジ時間 5,485 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
56,280 KB
testcase_01 AC 126 ms
55,896 KB
testcase_02 AC 127 ms
56,020 KB
testcase_03 AC 127 ms
55,904 KB
testcase_04 AC 126 ms
55,688 KB
testcase_05 AC 127 ms
55,896 KB
testcase_06 AC 127 ms
55,500 KB
testcase_07 AC 126 ms
56,088 KB
testcase_08 AC 126 ms
56,040 KB
testcase_09 AC 127 ms
55,724 KB
testcase_10 AC 125 ms
55,616 KB
testcase_11 AC 125 ms
56,088 KB
testcase_12 AC 125 ms
56,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.OutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
import java.util.Scanner;

/**
 * Built using CHelper plug-in
 * Actual solution is at the top
 */
public class Main {
    public static void main(String[] args) {
        InputStream inputStream = System.in;
        OutputStream outputStream = System.out;
        Scanner in = new Scanner(inputStream);
        PrintWriter out = new PrintWriter(outputStream);
        Task solver = new Task();
        solver.solve(1, in, out);
        out.close();
    }

    static class Task {
        public void solve(int testNumber, Scanner in, PrintWriter out) {
            int x = in.nextInt();
            int y = in.nextInt();
            int count = -1;
            if (x == y) count = 0;
            else if (y == 0) count = 1;
            else if (x == 0) count = 2;
            else if (x == -y) count = 3;
            out.println(count);
        }

    }
}

0