結果

問題 No.1438 Broken Drawers
ユーザー roarisroaris
提出日時 2021-03-26 21:29:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 553 ms / 2,000 ms
コード長 264 bytes
コンパイル時間 785 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 116,152 KB
最終ジャッジ日時 2024-11-28 21:31:56
合計ジャッジ時間 10,321 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,792 KB
testcase_01 AC 36 ms
53,784 KB
testcase_02 AC 36 ms
54,680 KB
testcase_03 AC 37 ms
53,812 KB
testcase_04 AC 35 ms
53,696 KB
testcase_05 AC 37 ms
54,516 KB
testcase_06 AC 134 ms
116,152 KB
testcase_07 AC 121 ms
108,236 KB
testcase_08 AC 36 ms
54,420 KB
testcase_09 AC 36 ms
55,424 KB
testcase_10 AC 35 ms
54,684 KB
testcase_11 AC 66 ms
76,644 KB
testcase_12 AC 212 ms
88,228 KB
testcase_13 AC 323 ms
96,720 KB
testcase_14 AC 149 ms
83,492 KB
testcase_15 AC 501 ms
105,336 KB
testcase_16 AC 476 ms
105,512 KB
testcase_17 AC 515 ms
108,272 KB
testcase_18 AC 512 ms
108,212 KB
testcase_19 AC 527 ms
108,188 KB
testcase_20 AC 529 ms
108,132 KB
testcase_21 AC 526 ms
108,196 KB
testcase_22 AC 525 ms
108,168 KB
testcase_23 AC 544 ms
108,356 KB
testcase_24 AC 539 ms
107,936 KB
testcase_25 AC 537 ms
107,936 KB
testcase_26 AC 553 ms
107,884 KB
testcase_27 AC 536 ms
108,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

N = int(input())
A = list(map(int, input().split()))
Ai = [(A[i], i) for i in range(N)]
Ai.sort()
s = set()
ans = 0

for _, i in Ai:
    if i+1 not in s:
        ans += 1
        s.add(i)

print(ans)
0