結果

問題 No.99 ジャンピング駒
ユーザー turner18_jpturner18_jp
提出日時 2018-01-11 13:10:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 326 ms / 5,000 ms
コード長 306 bytes
コンパイル時間 558 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,868 KB
最終ジャッジ日時 2024-06-06 05:32:09
合計ジャッジ時間 1,745 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
21,784 KB
testcase_01 AC 122 ms
21,740 KB
testcase_02 AC 157 ms
21,868 KB
testcase_03 AC 326 ms
21,740 KB
testcase_04 AC 100 ms
21,864 KB
testcase_05 AC 101 ms
21,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
l = list(map(int, input().split()))

for i in range(len(l), 0, -1):
  try:
    if not abs(l[i]-l[i-1]) % 2 == 0:
      try:
        if not l[i-2] == l[i-1]-1:
          l.pop(i)
          l.pop(i-1)
      except IndexError:
        continue
  except IndexError:
    continue

print(len(l))
0