結果

問題 No.99 ジャンピング駒
ユーザー matriematrie
提出日時 2020-11-30 20:12:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 78 ms / 5,000 ms
コード長 105 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 18,812 KB
最終ジャッジ日時 2024-09-13 02:32:11
合計ジャッジ時間 1,217 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
18,812 KB
testcase_01 AC 78 ms
18,784 KB
testcase_02 AC 78 ms
18,656 KB
testcase_03 AC 78 ms
18,780 KB
testcase_04 AC 77 ms
18,652 KB
testcase_05 AC 78 ms
18,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=input()
def p2(x):y=int(x)%2;return y
l=list(map(p2,input().split()))
print(abs(l.count(0)-l.count(1)))
0