結果

問題 No.365 ジェンガソート
ユーザー Ryushi-techRyushi-tech
提出日時 2020-06-23 23:35:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 167 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 82,536 KB
実行使用メモリ 82,564 KB
最終ジャッジ日時 2024-07-03 19:35:36
合計ジャッジ時間 3,498 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,752 KB
testcase_01 AC 37 ms
52,524 KB
testcase_02 AC 37 ms
53,324 KB
testcase_03 AC 37 ms
53,208 KB
testcase_04 AC 36 ms
52,416 KB
testcase_05 AC 37 ms
54,056 KB
testcase_06 AC 36 ms
52,968 KB
testcase_07 AC 36 ms
52,252 KB
testcase_08 AC 36 ms
52,596 KB
testcase_09 AC 36 ms
52,648 KB
testcase_10 AC 37 ms
52,548 KB
testcase_11 AC 37 ms
52,224 KB
testcase_12 AC 36 ms
53,008 KB
testcase_13 AC 37 ms
52,736 KB
testcase_14 AC 37 ms
51,948 KB
testcase_15 AC 37 ms
52,632 KB
testcase_16 AC 56 ms
77,472 KB
testcase_17 AC 60 ms
81,756 KB
testcase_18 AC 43 ms
61,956 KB
testcase_19 AC 61 ms
81,564 KB
testcase_20 AC 46 ms
66,096 KB
testcase_21 AC 48 ms
65,452 KB
testcase_22 AC 57 ms
76,908 KB
testcase_23 AC 51 ms
69,088 KB
testcase_24 AC 57 ms
76,024 KB
testcase_25 AC 45 ms
65,596 KB
testcase_26 AC 52 ms
71,680 KB
testcase_27 AC 60 ms
81,028 KB
testcase_28 AC 53 ms
73,608 KB
testcase_29 AC 59 ms
79,640 KB
testcase_30 AC 53 ms
72,780 KB
testcase_31 AC 46 ms
65,976 KB
testcase_32 AC 45 ms
65,684 KB
testcase_33 AC 59 ms
81,348 KB
testcase_34 AC 43 ms
63,312 KB
testcase_35 AC 53 ms
74,884 KB
testcase_36 AC 59 ms
81,904 KB
testcase_37 AC 57 ms
82,564 KB
testcase_38 AC 59 ms
81,600 KB
testcase_39 AC 61 ms
82,092 KB
testcase_40 AC 61 ms
81,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = list(map(int, input().split()))

res = 0
tmp = N
for j, y in enumerate(S[::-1]):
    if y == tmp:
        res += 1
        tmp -= 1
print(N - res)
0