結果

問題 No.365 ジェンガソート
ユーザー IJKTanabeIJKTanabe
提出日時 2019-09-02 10:46:10
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 251 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,768 KB
最終ジャッジ日時 2024-12-14 13:50:53
合計ジャッジ時間 4,498 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 27 ms
10,624 KB
testcase_04 AC 28 ms
10,624 KB
testcase_05 AC 28 ms
10,624 KB
testcase_06 AC 26 ms
10,624 KB
testcase_07 AC 28 ms
10,624 KB
testcase_08 AC 27 ms
10,624 KB
testcase_09 AC 27 ms
10,752 KB
testcase_10 AC 29 ms
10,624 KB
testcase_11 AC 28 ms
10,624 KB
testcase_12 AC 28 ms
10,624 KB
testcase_13 AC 27 ms
10,624 KB
testcase_14 AC 27 ms
10,624 KB
testcase_15 AC 26 ms
10,752 KB
testcase_16 AC 64 ms
18,392 KB
testcase_17 AC 76 ms
20,044 KB
testcase_18 AC 32 ms
11,520 KB
testcase_19 AC 81 ms
19,896 KB
testcase_20 AC 47 ms
13,696 KB
testcase_21 AC 38 ms
13,056 KB
testcase_22 AC 63 ms
18,304 KB
testcase_23 AC 47 ms
15,412 KB
testcase_24 AC 61 ms
17,868 KB
testcase_25 AC 39 ms
12,800 KB
testcase_26 AC 55 ms
16,268 KB
testcase_27 AC 74 ms
20,600 KB
testcase_28 AC 53 ms
16,400 KB
testcase_29 AC 71 ms
19,056 KB
testcase_30 AC 58 ms
16,780 KB
testcase_31 AC 41 ms
13,312 KB
testcase_32 AC 41 ms
13,184 KB
testcase_33 AC 70 ms
20,540 KB
testcase_34 AC 34 ms
12,416 KB
testcase_35 AC 64 ms
18,032 KB
testcase_36 AC 96 ms
20,644 KB
testcase_37 AC 76 ms
20,768 KB
testcase_38 AC 73 ms
20,648 KB
testcase_39 AC 82 ms
20,640 KB
testcase_40 AC 82 ms
20,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

blocks_num = int(input())
blocks = [int(i) for i in input().split(' ')]

searching_num = blocks_num
count = 0

for i in reversed(blocks):
    if i == searching_num:
       count += 1
       searching_num -= 1

answer = blocks_num - count
print(answer)
0