結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 29 ms
10,752 KB
testcase_10 AC 29 ms
10,624 KB
testcase_11 AC 30 ms
10,624 KB
testcase_12 AC 29 ms
10,624 KB
testcase_13 AC 29 ms
10,752 KB
testcase_14 AC 30 ms
10,752 KB
testcase_15 AC 30 ms
10,752 KB
testcase_16 AC 165 ms
20,488 KB
testcase_17 AC 166 ms
25,728 KB
testcase_18 AC 40 ms
11,904 KB
testcase_19 AC 143 ms
26,968 KB
testcase_20 AC 58 ms
15,800 KB
testcase_21 AC 67 ms
15,396 KB
testcase_22 AC 168 ms
20,604 KB
testcase_23 AC 107 ms
19,692 KB
testcase_24 AC 158 ms
20,448 KB
testcase_25 AC 63 ms
13,680 KB
testcase_26 AC 132 ms
19,068 KB
testcase_27 AC 221 ms
26,116 KB
testcase_28 AC 140 ms
19,964 KB
testcase_29 AC 200 ms
25,676 KB
testcase_30 AC 141 ms
20,120 KB
testcase_31 AC 78 ms
15,436 KB
testcase_32 AC 72 ms
15,340 KB
testcase_33 AC 225 ms
26,196 KB
testcase_34 AC 56 ms
13,184 KB
testcase_35 AC 166 ms
20,472 KB
testcase_36 AC 123 ms
26,428 KB
testcase_37 AC 159 ms
26,188 KB
testcase_38 AC 226 ms
26,272 KB
testcase_39 AC 143 ms
26,272 KB
testcase_40 AC 149 ms
26,260 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