結果

問題 No.1438 Broken Drawers
ユーザー tamatotamato
提出日時 2021-03-26 21:23:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 189 ms / 2,000 ms
コード長 446 bytes
コンパイル時間 1,190 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 133,632 KB
最終ジャッジ日時 2024-05-06 14:12:39
合計ジャッジ時間 5,477 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 37 ms
52,096 KB
testcase_02 AC 36 ms
52,224 KB
testcase_03 AC 36 ms
52,096 KB
testcase_04 AC 36 ms
52,096 KB
testcase_05 AC 37 ms
52,608 KB
testcase_06 AC 122 ms
123,008 KB
testcase_07 AC 125 ms
122,752 KB
testcase_08 AC 37 ms
52,224 KB
testcase_09 AC 37 ms
52,224 KB
testcase_10 AC 39 ms
51,968 KB
testcase_11 AC 49 ms
63,488 KB
testcase_12 AC 93 ms
91,648 KB
testcase_13 AC 120 ms
109,824 KB
testcase_14 AC 78 ms
82,304 KB
testcase_15 AC 165 ms
126,848 KB
testcase_16 AC 166 ms
133,632 KB
testcase_17 AC 176 ms
129,928 KB
testcase_18 AC 175 ms
127,616 KB
testcase_19 AC 175 ms
127,360 KB
testcase_20 AC 173 ms
124,672 KB
testcase_21 AC 171 ms
127,384 KB
testcase_22 AC 187 ms
124,800 KB
testcase_23 AC 180 ms
122,880 KB
testcase_24 AC 189 ms
122,896 KB
testcase_25 AC 179 ms
122,860 KB
testcase_26 AC 180 ms
122,752 KB
testcase_27 AC 181 ms
122,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

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

    a2i = {a: i for i, a in enumerate(A)}
    A_sorted = sorted(A)
    seen = [0] * N
    ans = 0
    for a in A_sorted:
        i = a2i[a]
        if not seen[i]:
            ans += 1
            if i != 0:
                seen[i-1] = 1
    print(ans)


if __name__ == '__main__':
    main()
0