結果

問題 No.365 ジェンガソート
ユーザー roiti46roiti46
提出日時 2016-04-29 22:53:23
言語 Python2
(2.7.18)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 270 bytes
コンパイル時間 77 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 16,684 KB
最終ジャッジ日時 2024-10-12 01:44:52
合計ジャッジ時間 3,927 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
8,064 KB
testcase_01 AC 22 ms
8,064 KB
testcase_02 AC 22 ms
8,064 KB
testcase_03 AC 23 ms
8,064 KB
testcase_04 AC 24 ms
8,064 KB
testcase_05 AC 23 ms
8,192 KB
testcase_06 AC 23 ms
8,064 KB
testcase_07 AC 23 ms
8,064 KB
testcase_08 AC 24 ms
8,064 KB
testcase_09 AC 23 ms
8,064 KB
testcase_10 AC 23 ms
8,064 KB
testcase_11 AC 24 ms
8,064 KB
testcase_12 AC 24 ms
8,192 KB
testcase_13 AC 24 ms
8,064 KB
testcase_14 AC 23 ms
8,064 KB
testcase_15 AC 23 ms
8,192 KB
testcase_16 AC 80 ms
14,468 KB
testcase_17 AC 89 ms
16,004 KB
testcase_18 AC 29 ms
8,704 KB
testcase_19 AC 90 ms
15,980 KB
testcase_20 AC 46 ms
10,704 KB
testcase_21 AC 39 ms
9,856 KB
testcase_22 AC 79 ms
14,508 KB
testcase_23 AC 56 ms
11,792 KB
testcase_24 AC 76 ms
14,056 KB
testcase_25 AC 40 ms
9,728 KB
testcase_26 AC 63 ms
12,788 KB
testcase_27 AC 95 ms
16,572 KB
testcase_28 AC 64 ms
13,052 KB
testcase_29 AC 86 ms
15,652 KB
testcase_30 AC 66 ms
13,152 KB
testcase_31 AC 41 ms
10,368 KB
testcase_32 AC 43 ms
10,112 KB
testcase_33 AC 91 ms
16,376 KB
testcase_34 AC 34 ms
9,344 KB
testcase_35 AC 74 ms
14,240 KB
testcase_36 AC 94 ms
16,684 KB
testcase_37 AC 96 ms
16,684 KB
testcase_38 AC 97 ms
16,556 KB
testcase_39 AC 95 ms
16,684 KB
testcase_40 AC 97 ms
16,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding: utf-8 -*-
import sys,copy,math,heapq,itertools as it,fractions,re,bisect,collections as coll

N = int(raw_input())
a = map(int, raw_input().split())

ans = 0
k = N
while a:
    x = a.pop()
    if x == k:
        k -= 1
    else:
        ans += 1
print ans
0