結果

問題 No.365 ジェンガソート
ユーザー matsukin1111matsukin1111
提出日時 2018-12-13 09:53:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 214 ms / 2,000 ms
コード長 265 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 26,680 KB
最終ジャッジ日時 2024-09-25 04:13:13
合計ジャッジ時間 5,733 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 28 ms
10,752 KB
testcase_05 AC 30 ms
10,880 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 28 ms
10,752 KB
testcase_08 AC 29 ms
10,624 KB
testcase_09 AC 28 ms
10,624 KB
testcase_10 AC 28 ms
10,752 KB
testcase_11 AC 29 ms
10,752 KB
testcase_12 AC 29 ms
10,752 KB
testcase_13 AC 28 ms
10,752 KB
testcase_14 AC 28 ms
10,752 KB
testcase_15 AC 29 ms
10,752 KB
testcase_16 AC 167 ms
20,420 KB
testcase_17 AC 154 ms
25,844 KB
testcase_18 AC 39 ms
12,032 KB
testcase_19 AC 138 ms
26,680 KB
testcase_20 AC 56 ms
15,796 KB
testcase_21 AC 65 ms
15,376 KB
testcase_22 AC 160 ms
20,512 KB
testcase_23 AC 106 ms
19,560 KB
testcase_24 AC 152 ms
20,448 KB
testcase_25 AC 60 ms
13,556 KB
testcase_26 AC 121 ms
19,948 KB
testcase_27 AC 209 ms
26,116 KB
testcase_28 AC 131 ms
20,084 KB
testcase_29 AC 185 ms
25,712 KB
testcase_30 AC 134 ms
20,132 KB
testcase_31 AC 72 ms
15,324 KB
testcase_32 AC 69 ms
15,448 KB
testcase_33 AC 210 ms
26,052 KB
testcase_34 AC 55 ms
13,184 KB
testcase_35 AC 155 ms
20,360 KB
testcase_36 AC 121 ms
26,248 KB
testcase_37 AC 161 ms
26,396 KB
testcase_38 AC 214 ms
26,320 KB
testcase_39 AC 138 ms
26,240 KB
testcase_40 AC 143 ms
26,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
s = list(map(int,input().split()))
t = {}
ss = sorted(s)
ss.reverse()
num = 0
p = 0
for a,b in enumerate(s):
    t[b] = a

for i in range(len(ss)-1):
    if t[ss[i+1]] > t[ss[i]]:
        t[ss[i+1]] = p-1
        p -= 1
        num += 1

print(num)
0