結果

問題 No.365 ジェンガソート
ユーザー yamamura-kyamamura-k
提出日時 2020-01-20 12:28:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 129 bytes
コンパイル時間 93 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 20,764 KB
最終ジャッジ日時 2024-07-02 22:17:11
合計ジャッジ時間 3,471 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 30 ms
10,496 KB
testcase_09 AC 30 ms
10,624 KB
testcase_10 AC 30 ms
10,496 KB
testcase_11 AC 33 ms
10,496 KB
testcase_12 AC 28 ms
10,496 KB
testcase_13 AC 29 ms
10,496 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 65 ms
18,252 KB
testcase_17 AC 76 ms
19,840 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 41 ms
13,056 KB
testcase_22 AC 65 ms
18,172 KB
testcase_23 AC 49 ms
15,280 KB
testcase_24 AC 63 ms
17,472 KB
testcase_25 AC 39 ms
12,544 KB
testcase_26 AC 55 ms
16,152 KB
testcase_27 AC 76 ms
20,340 KB
testcase_28 AC 56 ms
16,144 KB
testcase_29 AC 70 ms
19,172 KB
testcase_30 AC 58 ms
16,384 KB
testcase_31 AC 43 ms
13,056 KB
testcase_32 AC 41 ms
13,180 KB
testcase_33 AC 74 ms
20,312 KB
testcase_34 AC 36 ms
12,032 KB
testcase_35 AC 64 ms
17,384 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 75 ms
20,508 KB
testcase_39 WA -
testcase_40 AC 80 ms
20,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = tuple(map(int,input().split(" ")))
t = N
for i in range(N-1,0,-1):
    if A[i] == t:
        t -= 1
print(t)
0