結果
問題 | No.99 ジャンピング駒 |
ユーザー | first_vil |
提出日時 | 2020-11-06 09:16:23 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 76 ms / 5,000 ms |
コード長 | 287 bytes |
コンパイル時間 | 156 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 21,736 KB |
最終ジャッジ日時 | 2024-07-22 11:40:35 |
合計ジャッジ時間 | 1,082 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 76 ms
21,736 KB |
testcase_01 | AC | 70 ms
21,732 KB |
testcase_02 | AC | 70 ms
21,736 KB |
testcase_03 | AC | 69 ms
21,732 KB |
testcase_04 | AC | 69 ms
21,736 KB |
testcase_05 | AC | 68 ms
21,732 KB |
ソースコード
def main(): import sys input=sys.stdin.readline n=int(input()) odd=0;even=0 for x in list(map(int,input().split())): if x&1: odd+=1 else: even+=1 if odd<even: print(even-odd) else: print(odd-even) main()