結果

問題 No.365 ジェンガソート
ユーザー s_shoheis_shohei
提出日時 2020-05-04 19:36:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 59 ms / 2,000 ms
コード長 160 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 81,852 KB
最終ジャッジ日時 2024-06-24 21:24:41
合計ジャッジ時間 3,395 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
54,048 KB
testcase_01 AC 35 ms
53,356 KB
testcase_02 AC 34 ms
52,368 KB
testcase_03 AC 35 ms
52,740 KB
testcase_04 AC 35 ms
52,372 KB
testcase_05 AC 35 ms
53,312 KB
testcase_06 AC 34 ms
52,444 KB
testcase_07 AC 35 ms
52,124 KB
testcase_08 AC 34 ms
52,724 KB
testcase_09 AC 35 ms
53,168 KB
testcase_10 AC 35 ms
52,212 KB
testcase_11 AC 34 ms
52,696 KB
testcase_12 AC 35 ms
52,332 KB
testcase_13 AC 35 ms
52,160 KB
testcase_14 AC 36 ms
52,620 KB
testcase_15 AC 35 ms
52,160 KB
testcase_16 AC 54 ms
75,596 KB
testcase_17 AC 59 ms
80,640 KB
testcase_18 AC 41 ms
61,932 KB
testcase_19 AC 58 ms
80,868 KB
testcase_20 AC 44 ms
64,964 KB
testcase_21 AC 44 ms
63,616 KB
testcase_22 AC 53 ms
75,988 KB
testcase_23 AC 46 ms
68,688 KB
testcase_24 AC 52 ms
73,720 KB
testcase_25 AC 43 ms
63,576 KB
testcase_26 AC 49 ms
70,640 KB
testcase_27 AC 59 ms
81,328 KB
testcase_28 AC 52 ms
72,676 KB
testcase_29 AC 57 ms
79,148 KB
testcase_30 AC 50 ms
72,872 KB
testcase_31 AC 45 ms
66,508 KB
testcase_32 AC 44 ms
66,036 KB
testcase_33 AC 58 ms
81,360 KB
testcase_34 AC 42 ms
62,856 KB
testcase_35 AC 52 ms
74,868 KB
testcase_36 AC 57 ms
81,032 KB
testcase_37 AC 57 ms
81,332 KB
testcase_38 AC 57 ms
79,732 KB
testcase_39 AC 59 ms
80,412 KB
testcase_40 AC 58 ms
81,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
a.reverse()

now=n
cnt=0
for i in range(n):
    if a[i] == now:
        cnt+=1
        now-=1

print(n-cnt)
0