結果

問題 No.365 ジェンガソート
ユーザー yumenomatayumeyumenomatayume
提出日時 2020-04-05 13:11:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 60 ms / 2,000 ms
コード長 172 bytes
コンパイル時間 325 ms
コンパイル使用メモリ 82,012 KB
実行使用メモリ 82,076 KB
最終ジャッジ日時 2024-07-03 08:08:06
合計ジャッジ時間 4,490 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,724 KB
testcase_01 AC 36 ms
52,536 KB
testcase_02 AC 36 ms
52,416 KB
testcase_03 AC 35 ms
52,204 KB
testcase_04 AC 35 ms
53,508 KB
testcase_05 AC 36 ms
52,832 KB
testcase_06 AC 35 ms
51,996 KB
testcase_07 AC 36 ms
52,460 KB
testcase_08 AC 37 ms
52,428 KB
testcase_09 AC 36 ms
52,396 KB
testcase_10 AC 36 ms
52,976 KB
testcase_11 AC 36 ms
52,800 KB
testcase_12 AC 35 ms
52,340 KB
testcase_13 AC 36 ms
52,616 KB
testcase_14 AC 36 ms
51,824 KB
testcase_15 AC 36 ms
51,756 KB
testcase_16 AC 55 ms
76,304 KB
testcase_17 AC 59 ms
80,460 KB
testcase_18 AC 43 ms
61,732 KB
testcase_19 AC 60 ms
80,888 KB
testcase_20 AC 44 ms
65,432 KB
testcase_21 AC 44 ms
65,548 KB
testcase_22 AC 55 ms
75,360 KB
testcase_23 AC 49 ms
68,928 KB
testcase_24 AC 54 ms
74,480 KB
testcase_25 AC 44 ms
63,256 KB
testcase_26 AC 51 ms
71,308 KB
testcase_27 AC 59 ms
80,608 KB
testcase_28 AC 52 ms
73,052 KB
testcase_29 AC 57 ms
79,164 KB
testcase_30 AC 52 ms
73,720 KB
testcase_31 AC 58 ms
66,208 KB
testcase_32 AC 46 ms
66,752 KB
testcase_33 AC 59 ms
81,032 KB
testcase_34 AC 43 ms
63,508 KB
testcase_35 AC 55 ms
75,248 KB
testcase_36 AC 58 ms
80,852 KB
testcase_37 AC 58 ms
80,392 KB
testcase_38 AC 58 ms
80,616 KB
testcase_39 AC 59 ms
81,144 KB
testcase_40 AC 59 ms
82,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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