結果

問題 No.99 ジャンピング駒
ユーザー rlangevinrlangevin
提出日時 2024-08-21 12:07:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 92 ms / 5,000 ms
コード長 247 bytes
コンパイル時間 803 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 93,848 KB
最終ジャッジ日時 2024-08-21 12:07:16
合計ジャッジ時間 3,052 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
87,292 KB
testcase_01 AC 86 ms
88,020 KB
testcase_02 AC 83 ms
87,120 KB
testcase_03 AC 92 ms
90,488 KB
testcase_04 AC 88 ms
93,848 KB
testcase_05 AC 84 ms
93,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
X = sorted(list(map(int, input().split())))
stack = []
for x in X:
    if stack:
        if (x + stack[-1]) % 2:
            stack.pop()
        else:
            stack.append(x)
    else:
        stack.append(x)
print(len(stack))
0