結果

問題 No.365 ジェンガソート
ユーザー MIKI TakushiMIKI Takushi
提出日時 2019-01-04 08:22:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 102 ms / 2,000 ms
コード長 286 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,536 KB
最終ジャッジ日時 2024-11-23 23:04:03
合計ジャッジ時間 3,811 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 33 ms
10,752 KB
testcase_11 AC 31 ms
10,752 KB
testcase_12 AC 29 ms
10,624 KB
testcase_13 AC 30 ms
10,752 KB
testcase_14 AC 30 ms
10,624 KB
testcase_15 AC 30 ms
10,624 KB
testcase_16 AC 80 ms
18,268 KB
testcase_17 AC 92 ms
19,924 KB
testcase_18 AC 35 ms
11,520 KB
testcase_19 AC 89 ms
19,780 KB
testcase_20 AC 49 ms
13,620 KB
testcase_21 AC 47 ms
12,928 KB
testcase_22 AC 81 ms
18,184 KB
testcase_23 AC 58 ms
15,084 KB
testcase_24 AC 80 ms
17,864 KB
testcase_25 AC 46 ms
12,672 KB
testcase_26 AC 67 ms
16,040 KB
testcase_27 AC 96 ms
20,352 KB
testcase_28 AC 69 ms
16,420 KB
testcase_29 AC 90 ms
18,936 KB
testcase_30 AC 72 ms
16,528 KB
testcase_31 AC 47 ms
13,184 KB
testcase_32 AC 46 ms
13,184 KB
testcase_33 AC 96 ms
20,420 KB
testcase_34 AC 41 ms
12,288 KB
testcase_35 AC 76 ms
17,916 KB
testcase_36 AC 74 ms
20,528 KB
testcase_37 AC 102 ms
20,532 KB
testcase_38 AC 95 ms
20,536 KB
testcase_39 AC 94 ms
20,536 KB
testcase_40 AC 97 ms
20,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding: utf-8 -*-
n = int(input())
al = list(map(int, input().split()))

if all([i+1==al[i] for i in range(n)]):
    print(0)
    exit()

cnt = 0
maxN = n
for i in range(n-1,-1,-1):
    # print(i,maxN)
    if al[i]!=maxN:
        cnt += 1
    else:
        maxN -= 1


print(cnt)
0