結果

問題 No.1198 お菓子配り-1
ユーザー ks2mks2m
提出日時 2020-08-28 21:34:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 773 bytes
コンパイル時間 2,082 ms
コンパイル使用メモリ 74,664 KB
実行使用メモリ 41,548 KB
最終ジャッジ日時 2024-11-16 09:17:04
合計ジャッジ時間 4,980 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
39,924 KB
testcase_01 AC 116 ms
40,012 KB
testcase_02 AC 124 ms
41,548 KB
testcase_03 AC 123 ms
41,388 KB
testcase_04 AC 114 ms
40,064 KB
testcase_05 AC 121 ms
40,728 KB
testcase_06 AC 124 ms
41,144 KB
testcase_07 AC 115 ms
40,008 KB
testcase_08 AC 115 ms
40,116 KB
testcase_09 AC 112 ms
41,176 KB
testcase_10 AC 123 ms
41,380 KB
testcase_11 AC 126 ms
41,100 KB
testcase_12 AC 115 ms
39,860 KB
testcase_13 AC 116 ms
40,156 KB
testcase_14 AC 128 ms
41,144 KB
testcase_15 AC 128 ms
41,384 KB
testcase_16 AC 126 ms
41,152 KB
testcase_17 AC 123 ms
41,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigInteger;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		BigInteger n = sc.nextBigInteger();
		sc.close();

		BigInteger b0 = BigInteger.ZERO;
		BigInteger b1 = BigInteger.ONE;
		BigInteger b2 = BigInteger.valueOf(2);
		BigInteger b3 = BigInteger.valueOf(3);
		BigInteger b4 = BigInteger.valueOf(4);
		BigInteger b8 = BigInteger.valueOf(8);
		if (n.remainder(b2).compareTo(b1) == 0) {
			if (n.compareTo(b3) >= 0) {
				System.out.println(1);
			} else {
				System.out.println(-1);
			}
		} else {
			if (n.remainder(b4).compareTo(b0) == 0 &&
					n.compareTo(b8) >= 0) {
				System.out.println(1);
			} else {
				System.out.println(-1);
			}
		}
	}
}
0