結果

問題 No.365 ジェンガソート
ユーザー yomo3yomo3
提出日時 2020-03-01 13:30:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 130 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 20,632 KB
最終ジャッジ日時 2024-10-13 20:35:52
合計ジャッジ時間 4,258 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,496 KB
testcase_01 AC 26 ms
10,368 KB
testcase_02 AC 25 ms
10,496 KB
testcase_03 AC 27 ms
10,496 KB
testcase_04 AC 27 ms
10,624 KB
testcase_05 AC 27 ms
10,624 KB
testcase_06 AC 28 ms
10,624 KB
testcase_07 AC 25 ms
10,368 KB
testcase_08 AC 27 ms
10,368 KB
testcase_09 AC 28 ms
10,496 KB
testcase_10 AC 28 ms
10,496 KB
testcase_11 AC 26 ms
10,624 KB
testcase_12 AC 27 ms
10,368 KB
testcase_13 AC 26 ms
10,624 KB
testcase_14 AC 26 ms
10,496 KB
testcase_15 AC 26 ms
10,496 KB
testcase_16 AC 59 ms
18,280 KB
testcase_17 AC 70 ms
20,032 KB
testcase_18 AC 31 ms
11,392 KB
testcase_19 AC 70 ms
19,628 KB
testcase_20 AC 42 ms
13,696 KB
testcase_21 AC 35 ms
12,800 KB
testcase_22 AC 57 ms
18,292 KB
testcase_23 AC 44 ms
15,404 KB
testcase_24 AC 53 ms
17,728 KB
testcase_25 AC 34 ms
12,800 KB
testcase_26 AC 47 ms
16,028 KB
testcase_27 AC 71 ms
20,336 KB
testcase_28 AC 50 ms
16,396 KB
testcase_29 AC 62 ms
18,920 KB
testcase_30 AC 52 ms
16,512 KB
testcase_31 AC 39 ms
13,056 KB
testcase_32 AC 35 ms
12,924 KB
testcase_33 AC 68 ms
20,528 KB
testcase_34 AC 33 ms
12,288 KB
testcase_35 AC 59 ms
17,776 KB
testcase_36 AC 76 ms
20,380 KB
testcase_37 AC 69 ms
20,504 KB
testcase_38 AC 68 ms
20,632 KB
testcase_39 AC 70 ms
20,596 KB
testcase_40 AC 74 ms
20,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

n = N
for i in range(N-1, -1, -1):
    if A[i] == n:
        n -= 1
print(n)
0