結果

問題 No.365 ジェンガソート
ユーザー ronpooronpoo
提出日時 2023-08-23 10:21:46
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 267 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 82,544 KB
実行使用メモリ 142,852 KB
最終ジャッジ日時 2024-12-21 12:21:52
合計ジャッジ時間 66,376 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
59,296 KB
testcase_01 AC 33 ms
130,576 KB
testcase_02 AC 35 ms
58,908 KB
testcase_03 AC 34 ms
139,360 KB
testcase_04 AC 33 ms
59,456 KB
testcase_05 AC 33 ms
137,120 KB
testcase_06 AC 33 ms
60,612 KB
testcase_07 AC 33 ms
59,428 KB
testcase_08 AC 39 ms
59,016 KB
testcase_09 AC 37 ms
124,056 KB
testcase_10 AC 33 ms
60,308 KB
testcase_11 AC 34 ms
131,572 KB
testcase_12 AC 35 ms
59,016 KB
testcase_13 AC 36 ms
132,668 KB
testcase_14 AC 32 ms
59,644 KB
testcase_15 AC 37 ms
142,740 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 148 ms
72,204 KB
testcase_19 TLE -
testcase_20 AC 74 ms
76,000 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 AC 1,219 ms
72,228 KB
testcase_35 TLE -
testcase_36 AC 57 ms
88,604 KB
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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