結果

問題 No.365 ジェンガソート
ユーザー _matumo__matumo_
提出日時 2019-04-24 00:23:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 186 ms / 2,000 ms
コード長 253 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,848 KB
最終ジャッジ日時 2024-11-06 10:09:26
合計ジャッジ時間 5,847 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 31 ms
10,624 KB
testcase_05 AC 31 ms
10,624 KB
testcase_06 AC 29 ms
10,624 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 31 ms
10,624 KB
testcase_10 AC 31 ms
10,752 KB
testcase_11 AC 31 ms
10,624 KB
testcase_12 AC 30 ms
10,752 KB
testcase_13 AC 30 ms
10,624 KB
testcase_14 AC 31 ms
10,624 KB
testcase_15 AC 30 ms
10,624 KB
testcase_16 AC 149 ms
18,308 KB
testcase_17 AC 159 ms
19,804 KB
testcase_18 AC 41 ms
11,520 KB
testcase_19 AC 147 ms
19,644 KB
testcase_20 AC 68 ms
13,484 KB
testcase_21 AC 66 ms
12,800 KB
testcase_22 AC 142 ms
18,192 KB
testcase_23 AC 99 ms
15,296 KB
testcase_24 AC 137 ms
17,616 KB
testcase_25 AC 64 ms
12,672 KB
testcase_26 AC 118 ms
16,052 KB
testcase_27 AC 185 ms
20,492 KB
testcase_28 AC 119 ms
16,284 KB
testcase_29 AC 167 ms
18,944 KB
testcase_30 AC 121 ms
16,540 KB
testcase_31 AC 73 ms
13,184 KB
testcase_32 AC 69 ms
13,056 KB
testcase_33 AC 177 ms
20,848 KB
testcase_34 AC 56 ms
12,160 KB
testcase_35 AC 141 ms
18,056 KB
testcase_36 AC 144 ms
20,652 KB
testcase_37 AC 186 ms
20,520 KB
testcase_38 AC 185 ms
20,428 KB
testcase_39 AC 163 ms
20,648 KB
testcase_40 AC 165 ms
20,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
pa = [int(s) for s in input().split()]
pb = [0]*(N+1)
for i in range(N):
    pb[i+1] = max(pb[i], pa[i])
n = 0
for i in range(N-1, -1, -1):
    if pa[i] < pb[i] or pa[i] < pb[0]:
        pb[0] = max(pb[0], pa[i])
        n += 1
print(n)
0