結果

問題 No.1198 お菓子配り-1
ユーザー ApassApass
提出日時 2020-08-28 21:54:20
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 452 bytes
コンパイル時間 3,616 ms
コンパイル使用メモリ 75,872 KB
実行使用メモリ 54,472 KB
最終ジャッジ日時 2024-11-14 00:16:31
合計ジャッジ時間 6,393 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
53,884 KB
testcase_01 AC 128 ms
54,172 KB
testcase_02 AC 127 ms
54,104 KB
testcase_03 AC 114 ms
53,064 KB
testcase_04 AC 130 ms
54,112 KB
testcase_05 AC 130 ms
54,240 KB
testcase_06 AC 132 ms
54,236 KB
testcase_07 AC 130 ms
53,984 KB
testcase_08 AC 131 ms
54,432 KB
testcase_09 AC 118 ms
53,128 KB
testcase_10 AC 129 ms
54,192 KB
testcase_11 AC 128 ms
54,176 KB
testcase_12 AC 115 ms
52,964 KB
testcase_13 AC 132 ms
53,992 KB
testcase_14 AC 131 ms
54,236 KB
testcase_15 AC 130 ms
54,472 KB
testcase_16 WA -
testcase_17 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigInteger;
import java.util.*;

public class A_ {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        BigInteger N = sc.nextBigInteger();

        if (N.remainder(BigInteger.valueOf(4)).equals(BigInteger.ZERO)
                || N.remainder(BigInteger.TWO).equals(BigInteger.ONE)) {
            System.out.println(1);
        } else {
            System.out.println(-1);
        }
    }
}
0