結果

問題 No.1438 Broken Drawers
ユーザー burita083burita083
提出日時 2021-03-26 21:59:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 335 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 52,148 KB
最終ジャッジ日時 2024-11-28 23:08:19
合計ジャッジ時間 55,875 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
17,572 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 27 ms
49,024 KB
testcase_04 AC 28 ms
29,456 KB
testcase_05 AC 27 ms
17,568 KB
testcase_06 TLE -
testcase_07 TLE -
testcase_08 WA -
testcase_09 AC 26 ms
17,444 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

A = list(map(int, input().split()))

ban = set()
right = set()
for n in range(N):
  right.add(n+1)

ans = []
for n in range(N):
  current = A[n]
  right.remove(current)
  if not current in ban:
    ans.append(current)
    if current-1 >= 1:
      if not current -1 in ans:
        ban.add(current-1)

print(len(ans))
0