結果

問題 No.365 ジェンガソート
ユーザー ssmkzkssmkzk
提出日時 2018-12-11 15:55:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 134 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 20,508 KB
最終ジャッジ日時 2024-09-22 01:22:11
合計ジャッジ時間 4,191 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,496 KB
testcase_01 AC 28 ms
10,368 KB
testcase_02 AC 28 ms
10,368 KB
testcase_03 AC 27 ms
10,368 KB
testcase_04 AC 26 ms
10,496 KB
testcase_05 AC 26 ms
10,496 KB
testcase_06 AC 27 ms
10,496 KB
testcase_07 AC 26 ms
10,368 KB
testcase_08 AC 26 ms
10,624 KB
testcase_09 AC 27 ms
10,368 KB
testcase_10 AC 27 ms
10,368 KB
testcase_11 AC 27 ms
10,368 KB
testcase_12 AC 28 ms
10,368 KB
testcase_13 AC 28 ms
10,368 KB
testcase_14 AC 28 ms
10,496 KB
testcase_15 AC 28 ms
10,624 KB
testcase_16 AC 60 ms
18,380 KB
testcase_17 AC 74 ms
19,776 KB
testcase_18 AC 32 ms
11,392 KB
testcase_19 AC 76 ms
19,628 KB
testcase_20 AC 44 ms
13,440 KB
testcase_21 AC 36 ms
12,800 KB
testcase_22 AC 60 ms
18,164 KB
testcase_23 AC 47 ms
15,148 KB
testcase_24 AC 59 ms
17,480 KB
testcase_25 AC 36 ms
12,672 KB
testcase_26 AC 49 ms
15,900 KB
testcase_27 AC 68 ms
20,456 KB
testcase_28 AC 51 ms
16,140 KB
testcase_29 AC 64 ms
18,788 KB
testcase_30 AC 55 ms
16,644 KB
testcase_31 AC 41 ms
13,056 KB
testcase_32 AC 40 ms
13,048 KB
testcase_33 AC 71 ms
20,400 KB
testcase_34 AC 35 ms
12,032 KB
testcase_35 AC 58 ms
17,772 KB
testcase_36 AC 83 ms
20,508 KB
testcase_37 AC 72 ms
20,508 KB
testcase_38 AC 72 ms
20,380 KB
testcase_39 AC 76 ms
20,504 KB
testcase_40 AC 77 ms
20,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

l = list(map(int, input().split()))
l.reverse()


for i in range(len(l)):
    if l[i] == N:
        N -= 1

print(N)
0