結果

問題 No.365 ジェンガソート
ユーザー ronpooronpoo
提出日時 2023-08-23 10:55:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 75 ms / 2,000 ms
コード長 339 bytes
コンパイル時間 1,139 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 85,376 KB
最終ジャッジ日時 2024-12-21 13:05:27
合計ジャッジ時間 4,651 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,844 KB
testcase_01 AC 38 ms
52,700 KB
testcase_02 AC 38 ms
52,296 KB
testcase_03 AC 38 ms
51,744 KB
testcase_04 AC 39 ms
52,368 KB
testcase_05 AC 39 ms
52,932 KB
testcase_06 AC 38 ms
52,960 KB
testcase_07 AC 39 ms
51,632 KB
testcase_08 AC 38 ms
51,740 KB
testcase_09 AC 39 ms
52,704 KB
testcase_10 AC 39 ms
52,532 KB
testcase_11 AC 38 ms
52,640 KB
testcase_12 AC 39 ms
53,812 KB
testcase_13 AC 39 ms
51,444 KB
testcase_14 AC 38 ms
52,580 KB
testcase_15 AC 39 ms
52,000 KB
testcase_16 AC 69 ms
79,716 KB
testcase_17 AC 75 ms
84,740 KB
testcase_18 AC 53 ms
64,340 KB
testcase_19 AC 73 ms
84,272 KB
testcase_20 AC 53 ms
68,336 KB
testcase_21 AC 51 ms
65,864 KB
testcase_22 AC 65 ms
77,992 KB
testcase_23 AC 56 ms
70,556 KB
testcase_24 AC 64 ms
77,728 KB
testcase_25 AC 52 ms
65,952 KB
testcase_26 AC 59 ms
73,340 KB
testcase_27 AC 70 ms
83,856 KB
testcase_28 AC 61 ms
73,856 KB
testcase_29 AC 69 ms
80,768 KB
testcase_30 AC 62 ms
74,624 KB
testcase_31 AC 53 ms
66,176 KB
testcase_32 AC 52 ms
66,304 KB
testcase_33 AC 72 ms
83,200 KB
testcase_34 AC 49 ms
64,384 KB
testcase_35 AC 63 ms
76,416 KB
testcase_36 AC 67 ms
82,432 KB
testcase_37 AC 69 ms
82,432 KB
testcase_38 AC 69 ms
82,688 KB
testcase_39 AC 74 ms
85,376 KB
testcase_40 AC 73 ms
84,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

m = 0
x = [False]*N
y = [0]*N
for i in range(N):
    if a[i] < m:
        x[i] = True
    m = max(m, a[i])

v = 0
for i in range(N-1, -1, -1):
    if x[i]:
        v = max(v, a[i])
    y[i] = v
        
for i in range(N):
    if a[i] < y[i]:
        x[i] = True
ans = sum(x)
print(ans)
0