結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,420 KB
testcase_01 AC 33 ms
52,380 KB
testcase_02 AC 32 ms
51,964 KB
testcase_03 AC 32 ms
52,424 KB
testcase_04 AC 32 ms
52,392 KB
testcase_05 AC 31 ms
52,072 KB
testcase_06 AC 31 ms
52,792 KB
testcase_07 AC 31 ms
52,828 KB
testcase_08 AC 32 ms
53,160 KB
testcase_09 AC 38 ms
52,952 KB
testcase_10 AC 32 ms
51,944 KB
testcase_11 AC 30 ms
53,484 KB
testcase_12 AC 32 ms
52,432 KB
testcase_13 AC 34 ms
52,204 KB
testcase_14 AC 31 ms
52,236 KB
testcase_15 AC 31 ms
53,256 KB
testcase_16 AC 47 ms
76,128 KB
testcase_17 AC 52 ms
81,388 KB
testcase_18 AC 38 ms
61,484 KB
testcase_19 AC 53 ms
80,124 KB
testcase_20 AC 39 ms
66,612 KB
testcase_21 AC 38 ms
64,520 KB
testcase_22 AC 48 ms
75,640 KB
testcase_23 AC 42 ms
68,232 KB
testcase_24 AC 47 ms
74,292 KB
testcase_25 AC 40 ms
63,460 KB
testcase_26 AC 45 ms
71,600 KB
testcase_27 AC 55 ms
81,556 KB
testcase_28 AC 50 ms
72,424 KB
testcase_29 AC 56 ms
78,112 KB
testcase_30 AC 51 ms
73,344 KB
testcase_31 AC 41 ms
64,380 KB
testcase_32 AC 40 ms
65,276 KB
testcase_33 AC 52 ms
80,612 KB
testcase_34 AC 37 ms
62,980 KB
testcase_35 AC 48 ms
73,400 KB
testcase_36 AC 52 ms
80,264 KB
testcase_37 AC 50 ms
79,784 KB
testcase_38 AC 51 ms
80,696 KB
testcase_39 AC 53 ms
81,144 KB
testcase_40 AC 51 ms
80,460 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