結果

問題 No.1438 Broken Drawers
ユーザー roarisroaris
提出日時 2021-03-26 21:29:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 585 ms / 2,000 ms
コード長 264 bytes
コンパイル時間 564 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 115,372 KB
最終ジャッジ日時 2024-05-06 14:19:52
合計ジャッジ時間 10,116 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,504 KB
testcase_01 AC 43 ms
53,412 KB
testcase_02 AC 42 ms
53,888 KB
testcase_03 AC 44 ms
53,412 KB
testcase_04 AC 44 ms
53,120 KB
testcase_05 AC 43 ms
53,632 KB
testcase_06 AC 153 ms
115,372 KB
testcase_07 AC 137 ms
108,032 KB
testcase_08 AC 43 ms
53,760 KB
testcase_09 AC 43 ms
53,760 KB
testcase_10 AC 40 ms
53,888 KB
testcase_11 AC 76 ms
76,160 KB
testcase_12 AC 229 ms
87,552 KB
testcase_13 AC 350 ms
96,384 KB
testcase_14 AC 177 ms
83,400 KB
testcase_15 AC 544 ms
105,472 KB
testcase_16 AC 528 ms
105,088 KB
testcase_17 AC 544 ms
108,288 KB
testcase_18 AC 551 ms
108,144 KB
testcase_19 AC 561 ms
107,904 KB
testcase_20 AC 569 ms
107,648 KB
testcase_21 AC 550 ms
108,160 KB
testcase_22 AC 553 ms
107,904 KB
testcase_23 AC 576 ms
107,520 KB
testcase_24 AC 585 ms
107,904 KB
testcase_25 AC 580 ms
108,052 KB
testcase_26 AC 562 ms
107,648 KB
testcase_27 AC 554 ms
107,868 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