結果

問題 No.1198 お菓子配り-1
ユーザー ApassApass
提出日時 2020-08-28 22:04:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 483 bytes
コンパイル時間 3,476 ms
コンパイル使用メモリ 74,536 KB
実行使用メモリ 41,428 KB
最終ジャッジ日時 2024-11-16 09:27:00
合計ジャッジ時間 6,296 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,096 KB
testcase_01 AC 109 ms
40,368 KB
testcase_02 AC 124 ms
41,020 KB
testcase_03 AC 123 ms
41,380 KB
testcase_04 AC 125 ms
41,204 KB
testcase_05 AC 123 ms
41,212 KB
testcase_06 AC 126 ms
41,428 KB
testcase_07 AC 129 ms
41,048 KB
testcase_08 AC 131 ms
41,128 KB
testcase_09 AC 129 ms
41,252 KB
testcase_10 AC 118 ms
40,040 KB
testcase_11 AC 126 ms
41,164 KB
testcase_12 AC 113 ms
39,916 KB
testcase_13 AC 126 ms
41,092 KB
testcase_14 AC 130 ms
41,340 KB
testcase_15 AC 127 ms
41,252 KB
testcase_16 AC 126 ms
40,976 KB
testcase_17 AC 128 ms
41,288 KB
権限があれば一括ダウンロードができます

ソースコード

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.equals(BigInteger.valueOf(1))
                || N.equals(BigInteger.valueOf(4))
                || N.remainder(BigInteger.valueOf(4)).equals(BigInteger.TWO)) {
            System.out.println(-1);
        } else {
            System.out.println(1);
        }
    }
}
0