結果
問題 | No.1198 お菓子配り-1 |
ユーザー | tenten |
提出日時 | 2023-08-02 08:42:33 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 56 ms / 2,000 ms |
コード長 | 2,073 bytes |
コンパイル時間 | 3,137 ms |
コンパイル使用メモリ | 90,240 KB |
実行使用メモリ | 50,412 KB |
最終ジャッジ日時 | 2024-10-12 03:38:39 |
合計ジャッジ時間 | 4,927 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 56 ms
49,996 KB |
testcase_01 | AC | 54 ms
50,268 KB |
testcase_02 | AC | 54 ms
50,316 KB |
testcase_03 | AC | 55 ms
49,964 KB |
testcase_04 | AC | 54 ms
50,116 KB |
testcase_05 | AC | 55 ms
50,188 KB |
testcase_06 | AC | 55 ms
49,984 KB |
testcase_07 | AC | 55 ms
49,808 KB |
testcase_08 | AC | 56 ms
50,144 KB |
testcase_09 | AC | 55 ms
49,824 KB |
testcase_10 | AC | 54 ms
50,184 KB |
testcase_11 | AC | 55 ms
50,180 KB |
testcase_12 | AC | 55 ms
50,412 KB |
testcase_13 | AC | 56 ms
49,964 KB |
testcase_14 | AC | 56 ms
50,388 KB |
testcase_15 | AC | 55 ms
49,952 KB |
testcase_16 | AC | 54 ms
50,140 KB |
testcase_17 | AC | 55 ms
49,832 KB |
ソースコード
import java.io.*; import java.util.*; import java.util.stream.*; public class Main { static int MOD; public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); char[] num = sc.next().toCharArray(); if (num.length == 1 && (num[0] == '1' || num[0] == '4')) { System.out.println("-1"); return; } if (isOdd(num) || canDiv4(num)) { System.out.println("1"); } else { System.out.println("-1"); } } static boolean isOdd(char[] num) { return (num[num.length - 1] - '0') % 2 == 1; } static boolean canDiv4(char[] num) { int ans = 0; for (char c : num) { ans *= 10; ans += c - '0'; ans %= 4; } return ans == 0; } } class Utilities { static String arrayToLineString(Object[] arr) { return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n")); } static String arrayToLineString(int[] arr) { return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new)); } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); StringBuilder sb = new StringBuilder(); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public double nextDouble() throws Exception { return Double.parseDouble(next()); } public int[] nextIntArray() throws Exception { return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray(); } public String next() throws Exception { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }