結果

問題 No.365 ジェンガソート
ユーザー netyo715netyo715
提出日時 2021-07-09 10:31:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 107 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 10,644 KB
実行使用メモリ 19,704 KB
最終ジャッジ日時 2023-09-14 06:23:22
合計ジャッジ時間 3,025 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
7,752 KB
testcase_01 AC 15 ms
7,800 KB
testcase_02 AC 15 ms
7,772 KB
testcase_03 AC 15 ms
7,716 KB
testcase_04 AC 15 ms
7,848 KB
testcase_05 AC 15 ms
7,712 KB
testcase_06 AC 15 ms
7,752 KB
testcase_07 AC 15 ms
7,796 KB
testcase_08 AC 15 ms
7,788 KB
testcase_09 AC 15 ms
7,724 KB
testcase_10 AC 15 ms
7,776 KB
testcase_11 AC 16 ms
7,828 KB
testcase_12 AC 16 ms
7,836 KB
testcase_13 AC 16 ms
7,772 KB
testcase_14 AC 16 ms
7,844 KB
testcase_15 AC 15 ms
7,896 KB
testcase_16 AC 46 ms
16,976 KB
testcase_17 AC 55 ms
18,904 KB
testcase_18 AC 19 ms
8,956 KB
testcase_19 AC 57 ms
18,868 KB
testcase_20 AC 30 ms
11,272 KB
testcase_21 AC 24 ms
10,552 KB
testcase_22 AC 44 ms
16,168 KB
testcase_23 AC 32 ms
13,072 KB
testcase_24 AC 42 ms
15,824 KB
testcase_25 AC 24 ms
10,256 KB
testcase_26 AC 37 ms
14,204 KB
testcase_27 AC 54 ms
19,460 KB
testcase_28 AC 38 ms
14,756 KB
testcase_29 AC 50 ms
17,712 KB
testcase_30 AC 38 ms
14,736 KB
testcase_31 AC 26 ms
10,972 KB
testcase_32 AC 25 ms
11,008 KB
testcase_33 AC 53 ms
19,044 KB
testcase_34 AC 22 ms
9,876 KB
testcase_35 AC 43 ms
16,248 KB
testcase_36 AC 62 ms
19,608 KB
testcase_37 AC 54 ms
19,704 KB
testcase_38 AC 53 ms
19,644 KB
testcase_39 AC 58 ms
19,572 KB
testcase_40 AC 58 ms
19,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
for a in A[::-1]:
    if N==a:
        N -= 1
print(N)
0