結果
問題 | No.99 ジャンピング駒 |
ユーザー | liny_tail |
提出日時 | 2020-08-14 18:58:11 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 105 ms / 5,000 ms |
コード長 | 120 bytes |
コンパイル時間 | 289 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 21,844 KB |
最終ジャッジ日時 | 2024-10-10 12:14:23 |
合計ジャッジ時間 | 1,249 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 90 ms
19,932 KB |
testcase_01 | AC | 92 ms
19,924 KB |
testcase_02 | AC | 89 ms
19,800 KB |
testcase_03 | AC | 81 ms
18,904 KB |
testcase_04 | AC | 105 ms
21,844 KB |
testcase_05 | AC | 74 ms
18,908 KB |
ソースコード
N = int(input().strip()) X = [int(i) for i in input().strip().split(' ') if int(i) % 2 == 0] print(abs(N - len(X) * 2))