結果

問題 No.365 ジェンガソート
ユーザー FromBooskaFromBooska
提出日時 2023-02-21 19:13:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 266 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 82,488 KB
実行使用メモリ 81,148 KB
最終ジャッジ日時 2024-07-22 04:47:02
合計ジャッジ時間 3,615 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,056 KB
testcase_01 AC 39 ms
51,944 KB
testcase_02 AC 38 ms
52,780 KB
testcase_03 AC 38 ms
52,824 KB
testcase_04 AC 39 ms
53,140 KB
testcase_05 AC 38 ms
52,816 KB
testcase_06 AC 38 ms
52,420 KB
testcase_07 AC 38 ms
52,580 KB
testcase_08 AC 39 ms
52,796 KB
testcase_09 AC 38 ms
52,844 KB
testcase_10 AC 38 ms
53,304 KB
testcase_11 AC 38 ms
52,520 KB
testcase_12 AC 39 ms
52,756 KB
testcase_13 AC 38 ms
52,676 KB
testcase_14 AC 43 ms
52,924 KB
testcase_15 AC 38 ms
53,456 KB
testcase_16 AC 57 ms
75,936 KB
testcase_17 AC 62 ms
80,860 KB
testcase_18 AC 46 ms
61,652 KB
testcase_19 AC 62 ms
80,104 KB
testcase_20 AC 48 ms
65,868 KB
testcase_21 AC 47 ms
65,360 KB
testcase_22 AC 57 ms
75,676 KB
testcase_23 AC 51 ms
68,976 KB
testcase_24 AC 56 ms
74,076 KB
testcase_25 AC 47 ms
64,628 KB
testcase_26 AC 54 ms
71,388 KB
testcase_27 AC 61 ms
80,956 KB
testcase_28 AC 55 ms
72,492 KB
testcase_29 AC 60 ms
78,208 KB
testcase_30 AC 55 ms
71,596 KB
testcase_31 AC 49 ms
65,400 KB
testcase_32 AC 47 ms
65,928 KB
testcase_33 AC 62 ms
80,060 KB
testcase_34 AC 46 ms
63,776 KB
testcase_35 AC 56 ms
74,636 KB
testcase_36 AC 61 ms
81,148 KB
testcase_37 AC 61 ms
80,716 KB
testcase_38 AC 61 ms
80,120 KB
testcase_39 AC 62 ms
80,336 KB
testcase_40 AC 61 ms
80,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 転倒数BITとは違う
# 後ろから数えて、N,N-1,N-2と探していき、N-見つかった数=答えか

N = int(input())
A = list(map(int, input().split()))
find = N
for i in range(N-1, -1, -1):
    if A[i] == find:
        find -= 1
ans = find
print(ans)
0