結果

問題 No.365 ジェンガソート
ユーザー yansi819yansi819
提出日時 2024-05-20 10:38:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 66 ms / 2,000 ms
コード長 162 bytes
コンパイル時間 280 ms
コンパイル使用メモリ 81,908 KB
実行使用メモリ 81,200 KB
最終ジャッジ日時 2024-12-20 17:46:45
合計ジャッジ時間 4,676 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,924 KB
testcase_01 AC 39 ms
52,808 KB
testcase_02 AC 38 ms
52,048 KB
testcase_03 AC 45 ms
52,688 KB
testcase_04 AC 42 ms
51,876 KB
testcase_05 AC 38 ms
52,704 KB
testcase_06 AC 39 ms
52,312 KB
testcase_07 AC 38 ms
52,324 KB
testcase_08 AC 38 ms
52,732 KB
testcase_09 AC 38 ms
52,280 KB
testcase_10 AC 38 ms
52,928 KB
testcase_11 AC 40 ms
51,864 KB
testcase_12 AC 41 ms
52,484 KB
testcase_13 AC 39 ms
51,996 KB
testcase_14 AC 40 ms
53,236 KB
testcase_15 AC 39 ms
52,084 KB
testcase_16 AC 57 ms
76,480 KB
testcase_17 AC 62 ms
79,584 KB
testcase_18 AC 46 ms
61,712 KB
testcase_19 AC 66 ms
80,912 KB
testcase_20 AC 48 ms
65,160 KB
testcase_21 AC 48 ms
64,072 KB
testcase_22 AC 60 ms
75,980 KB
testcase_23 AC 53 ms
69,032 KB
testcase_24 AC 57 ms
74,132 KB
testcase_25 AC 48 ms
64,124 KB
testcase_26 AC 54 ms
71,160 KB
testcase_27 AC 65 ms
80,896 KB
testcase_28 AC 57 ms
71,632 KB
testcase_29 AC 64 ms
78,896 KB
testcase_30 AC 59 ms
72,696 KB
testcase_31 AC 49 ms
64,988 KB
testcase_32 AC 49 ms
64,424 KB
testcase_33 AC 63 ms
80,316 KB
testcase_34 AC 50 ms
62,760 KB
testcase_35 AC 62 ms
75,108 KB
testcase_36 AC 63 ms
80,496 KB
testcase_37 AC 62 ms
80,128 KB
testcase_38 AC 63 ms
81,200 KB
testcase_39 AC 64 ms
80,592 KB
testcase_40 AC 63 ms
80,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
a = list(map(int, input().split()))
cnt = 0
x = N
for i in range(N - 1, -1, -1):
    if a[i] == x:
        cnt += 1
        x -= 1
print(N - cnt)
0