結果
問題 | No.1198 お菓子配り-1 |
ユーザー | tenten |
提出日時 | 2023-08-02 08:40:13 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,938 bytes |
コンパイル時間 | 2,521 ms |
コンパイル使用メモリ | 83,968 KB |
実行使用メモリ | 37,332 KB |
最終ジャッジ日時 | 2024-10-12 03:36:39 |
合計ジャッジ時間 | 4,341 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 52 ms
36,660 KB |
testcase_01 | AC | 52 ms
37,076 KB |
testcase_02 | AC | 52 ms
36,724 KB |
testcase_03 | AC | 52 ms
36,856 KB |
testcase_04 | AC | 52 ms
37,112 KB |
testcase_05 | AC | 52 ms
36,856 KB |
testcase_06 | AC | 52 ms
36,992 KB |
testcase_07 | AC | 52 ms
37,204 KB |
testcase_08 | AC | 52 ms
36,828 KB |
testcase_09 | AC | 53 ms
37,332 KB |
testcase_10 | AC | 52 ms
37,088 KB |
testcase_11 | AC | 52 ms
36,832 KB |
testcase_12 | AC | 53 ms
37,072 KB |
testcase_13 | AC | 52 ms
36,568 KB |
testcase_14 | AC | 51 ms
37,200 KB |
testcase_15 | AC | 52 ms
37,068 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
ソースコード
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 (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(); } }