結果

問題 No.1438 Broken Drawers
ユーザー tamatotamato
提出日時 2021-03-26 21:23:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 195 ms / 2,000 ms
コード長 446 bytes
コンパイル時間 667 ms
コンパイル使用メモリ 82,568 KB
実行使用メモリ 133,832 KB
最終ジャッジ日時 2024-11-28 21:23:16
合計ジャッジ時間 4,867 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,132 KB
testcase_01 AC 38 ms
52,988 KB
testcase_02 AC 38 ms
53,128 KB
testcase_03 AC 38 ms
53,344 KB
testcase_04 AC 38 ms
52,720 KB
testcase_05 AC 39 ms
53,252 KB
testcase_06 AC 121 ms
122,888 KB
testcase_07 AC 122 ms
122,840 KB
testcase_08 AC 39 ms
53,292 KB
testcase_09 AC 39 ms
53,580 KB
testcase_10 AC 37 ms
53,164 KB
testcase_11 AC 49 ms
64,164 KB
testcase_12 AC 91 ms
92,352 KB
testcase_13 AC 123 ms
110,744 KB
testcase_14 AC 77 ms
82,616 KB
testcase_15 AC 182 ms
127,076 KB
testcase_16 AC 181 ms
133,832 KB
testcase_17 AC 184 ms
130,284 KB
testcase_18 AC 182 ms
127,456 KB
testcase_19 AC 188 ms
127,516 KB
testcase_20 AC 188 ms
125,156 KB
testcase_21 AC 188 ms
127,552 KB
testcase_22 AC 188 ms
125,048 KB
testcase_23 AC 193 ms
122,968 KB
testcase_24 AC 192 ms
122,984 KB
testcase_25 AC 193 ms
122,736 KB
testcase_26 AC 191 ms
122,848 KB
testcase_27 AC 195 ms
122,968 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