結果

問題 No.365 ジェンガソート
ユーザー FromBooskaFromBooska
提出日時 2023-10-01 22:00:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 59 ms / 2,000 ms
コード長 213 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 81,696 KB
最終ジャッジ日時 2024-07-26 13:32:45
合計ジャッジ時間 4,610 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,216 KB
testcase_01 AC 36 ms
52,584 KB
testcase_02 AC 34 ms
52,128 KB
testcase_03 AC 36 ms
52,288 KB
testcase_04 AC 35 ms
52,732 KB
testcase_05 AC 36 ms
53,028 KB
testcase_06 AC 36 ms
52,704 KB
testcase_07 AC 36 ms
52,372 KB
testcase_08 AC 36 ms
52,840 KB
testcase_09 AC 37 ms
52,448 KB
testcase_10 AC 36 ms
52,632 KB
testcase_11 AC 36 ms
52,756 KB
testcase_12 AC 34 ms
51,680 KB
testcase_13 AC 33 ms
52,140 KB
testcase_14 AC 35 ms
52,016 KB
testcase_15 AC 36 ms
52,000 KB
testcase_16 AC 55 ms
76,064 KB
testcase_17 AC 59 ms
80,556 KB
testcase_18 AC 43 ms
61,344 KB
testcase_19 AC 56 ms
81,376 KB
testcase_20 AC 41 ms
66,680 KB
testcase_21 AC 43 ms
63,772 KB
testcase_22 AC 54 ms
75,532 KB
testcase_23 AC 46 ms
68,576 KB
testcase_24 AC 49 ms
74,296 KB
testcase_25 AC 41 ms
65,044 KB
testcase_26 AC 47 ms
71,104 KB
testcase_27 AC 55 ms
81,040 KB
testcase_28 AC 49 ms
71,880 KB
testcase_29 AC 54 ms
77,672 KB
testcase_30 AC 48 ms
72,220 KB
testcase_31 AC 42 ms
65,796 KB
testcase_32 AC 43 ms
64,832 KB
testcase_33 AC 56 ms
80,752 KB
testcase_34 AC 40 ms
63,080 KB
testcase_35 AC 49 ms
74,624 KB
testcase_36 AC 53 ms
80,060 KB
testcase_37 AC 57 ms
81,696 KB
testcase_38 AC 56 ms
79,984 KB
testcase_39 AC 56 ms
81,548 KB
testcase_40 AC 57 ms
80,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 後ろから見て、5, 4, 3, 2とどこまで辿れるか

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