結果
問題 | No.99 ジャンピング駒 |
ユーザー | scache |
提出日時 | 2014-12-09 23:33:56 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 376 bytes |
コンパイル時間 | 3,065 ms |
コンパイル使用メモリ | 74,252 KB |
実行使用メモリ | 59,872 KB |
最終ジャッジ日時 | 2024-06-11 19:02:24 |
合計ジャッジ時間 | 7,484 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 571 ms
48,092 KB |
testcase_01 | AC | 491 ms
47,968 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
ソースコード
import java.util.Scanner; public class Main99 { public static void main(String[] args) { Main99 p = new Main99(); } public Main99() { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int[] s = new int[2]; for (int i = 0; i < n; i++) s[Math.abs(sc.nextInt())%2] += 1; System.out.println(s[0]%2==s[1]%2 ? 0 : 1); } }