結果
問題 | No.99 ジャンピング駒 |
ユーザー | nCk_cv |
提出日時 | 2016-01-29 16:52:24 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 628 bytes |
コンパイル時間 | 2,022 ms |
コンパイル使用メモリ | 76,880 KB |
実行使用メモリ | 122,316 KB |
最終ジャッジ日時 | 2024-09-21 17:53:02 |
合計ジャッジ時間 | 19,376 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 733 ms
55,488 KB |
testcase_05 | TLE | - |
ソースコード
import java.util.*; import java.math.*; import java.io.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int N = sc.nextInt(); int a = 0; int b = 0; ArrayList<Integer> list = new ArrayList<Integer>(); for(int i = 0; i < N; i++) { list.add(sc.nextInt()); } Collections.sort(list); boolean ok = true; while(ok) { ok = false; for(int i = 1; i < list.size(); i++) { if(list.get(i) % 2 != list.get(i-1) % 2) { list.remove(i-1); list.remove(i-1); ok = true; break; } } } System.out.println(list.size()); } }