結果

問題 No.365 ジェンガソート
ユーザー ああいいああいい
提出日時 2022-03-30 15:43:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 186 bytes
コンパイル時間 358 ms
コンパイル使用メモリ 82,076 KB
実行使用メモリ 98,248 KB
最終ジャッジ日時 2024-11-14 17:32:36
合計ジャッジ時間 3,722 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,020 KB
testcase_01 AC 37 ms
52,192 KB
testcase_02 AC 37 ms
53,532 KB
testcase_03 AC 36 ms
52,836 KB
testcase_04 AC 37 ms
52,360 KB
testcase_05 AC 37 ms
52,188 KB
testcase_06 AC 37 ms
52,304 KB
testcase_07 AC 37 ms
52,552 KB
testcase_08 AC 37 ms
52,432 KB
testcase_09 AC 37 ms
51,992 KB
testcase_10 AC 37 ms
52,772 KB
testcase_11 AC 37 ms
52,016 KB
testcase_12 AC 37 ms
52,808 KB
testcase_13 AC 37 ms
52,084 KB
testcase_14 AC 37 ms
52,908 KB
testcase_15 AC 37 ms
53,488 KB
testcase_16 AC 67 ms
88,864 KB
testcase_17 AC 75 ms
98,248 KB
testcase_18 AC 44 ms
62,660 KB
testcase_19 AC 76 ms
96,880 KB
testcase_20 AC 52 ms
71,204 KB
testcase_21 AC 47 ms
67,456 KB
testcase_22 AC 67 ms
89,472 KB
testcase_23 AC 54 ms
75,864 KB
testcase_24 AC 64 ms
86,384 KB
testcase_25 AC 47 ms
67,812 KB
testcase_26 AC 59 ms
81,072 KB
testcase_27 AC 73 ms
97,864 KB
testcase_28 AC 60 ms
84,156 KB
testcase_29 AC 71 ms
93,348 KB
testcase_30 AC 62 ms
83,312 KB
testcase_31 AC 48 ms
69,304 KB
testcase_32 AC 48 ms
69,016 KB
testcase_33 AC 74 ms
96,416 KB
testcase_34 AC 45 ms
65,156 KB
testcase_35 AC 64 ms
86,396 KB
testcase_36 AC 76 ms
97,528 KB
testcase_37 AC 73 ms
97,248 KB
testcase_38 AC 75 ms
97,120 KB
testcase_39 AC 75 ms
97,636 KB
testcase_40 AC 76 ms
97,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
D = {v:i for i,v in enumerate(A)}

import sys
for i in range(N,1,-1):
    if D[i] < D[i-1]:
        print(i-1)
        exit()
print(0)
0