結果

問題 No.365 ジェンガソート
ユーザー mbanmban
提出日時 2017-03-05 02:58:02
言語 Python2
(2.7.18)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 170 bytes
コンパイル時間 54 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 15,048 KB
最終ジャッジ日時 2024-06-23 02:16:33
合計ジャッジ時間 2,791 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,400 KB
testcase_01 AC 12 ms
6,400 KB
testcase_02 AC 12 ms
6,400 KB
testcase_03 AC 11 ms
6,400 KB
testcase_04 AC 12 ms
6,400 KB
testcase_05 AC 12 ms
6,272 KB
testcase_06 AC 11 ms
6,400 KB
testcase_07 AC 11 ms
6,400 KB
testcase_08 AC 11 ms
6,400 KB
testcase_09 AC 11 ms
6,400 KB
testcase_10 AC 11 ms
6,400 KB
testcase_11 AC 11 ms
6,400 KB
testcase_12 AC 11 ms
6,400 KB
testcase_13 AC 11 ms
6,272 KB
testcase_14 AC 11 ms
6,400 KB
testcase_15 AC 11 ms
6,400 KB
testcase_16 AC 60 ms
12,836 KB
testcase_17 AC 79 ms
14,376 KB
testcase_18 AC 17 ms
7,040 KB
testcase_19 AC 76 ms
14,348 KB
testcase_20 AC 33 ms
8,960 KB
testcase_21 AC 25 ms
8,320 KB
testcase_22 AC 59 ms
12,752 KB
testcase_23 AC 39 ms
10,160 KB
testcase_24 AC 57 ms
12,432 KB
testcase_25 AC 25 ms
8,064 KB
testcase_26 AC 46 ms
11,160 KB
testcase_27 AC 73 ms
14,812 KB
testcase_28 AC 47 ms
11,296 KB
testcase_29 AC 67 ms
14,028 KB
testcase_30 AC 48 ms
11,524 KB
testcase_31 AC 28 ms
8,576 KB
testcase_32 AC 27 ms
8,448 KB
testcase_33 AC 72 ms
14,872 KB
testcase_34 AC 22 ms
7,808 KB
testcase_35 AC 56 ms
12,476 KB
testcase_36 AC 85 ms
14,920 KB
testcase_37 AC 74 ms
15,048 KB
testcase_38 AC 75 ms
15,048 KB
testcase_39 AC 79 ms
14,924 KB
testcase_40 AC 80 ms
15,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

count = 0
look = N

for i in range(N):
    if look == a[N - i - 1]:
        look -= 1
        count += 1

print N - count
0