結果

問題 No.365 ジェンガソート
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-06-29 19:55:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 64 ms / 2,000 ms
コード長 199 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 82,028 KB
最終ジャッジ日時 2024-06-25 22:20:26
合計ジャッジ時間 3,633 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,120 KB
testcase_01 AC 37 ms
52,684 KB
testcase_02 AC 38 ms
52,492 KB
testcase_03 AC 37 ms
52,700 KB
testcase_04 AC 37 ms
52,088 KB
testcase_05 AC 41 ms
52,876 KB
testcase_06 AC 37 ms
52,544 KB
testcase_07 AC 36 ms
52,548 KB
testcase_08 AC 38 ms
53,144 KB
testcase_09 AC 37 ms
52,872 KB
testcase_10 AC 38 ms
52,416 KB
testcase_11 AC 37 ms
51,952 KB
testcase_12 AC 37 ms
52,088 KB
testcase_13 AC 38 ms
52,704 KB
testcase_14 AC 37 ms
53,644 KB
testcase_15 AC 37 ms
52,956 KB
testcase_16 AC 56 ms
76,684 KB
testcase_17 AC 63 ms
81,876 KB
testcase_18 AC 43 ms
60,960 KB
testcase_19 AC 62 ms
79,948 KB
testcase_20 AC 48 ms
65,376 KB
testcase_21 AC 45 ms
63,964 KB
testcase_22 AC 56 ms
75,052 KB
testcase_23 AC 49 ms
69,428 KB
testcase_24 AC 55 ms
74,484 KB
testcase_25 AC 44 ms
64,300 KB
testcase_26 AC 51 ms
71,268 KB
testcase_27 AC 60 ms
80,376 KB
testcase_28 AC 53 ms
71,636 KB
testcase_29 AC 57 ms
78,260 KB
testcase_30 AC 53 ms
72,704 KB
testcase_31 AC 46 ms
64,304 KB
testcase_32 AC 46 ms
63,872 KB
testcase_33 AC 60 ms
80,360 KB
testcase_34 AC 44 ms
61,980 KB
testcase_35 AC 58 ms
75,100 KB
testcase_36 AC 61 ms
80,584 KB
testcase_37 AC 60 ms
80,396 KB
testcase_38 AC 62 ms
81,360 KB
testcase_39 AC 64 ms
82,028 KB
testcase_40 AC 62 ms
81,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main2(n,a):
  cnt=0
  for x in a[::-1]:
    if x==n-cnt:
      cnt+=1
  return n-cnt

if __name__=='__main__':
  n=int(input())
  a=list(map(int,input().split()))
  ret2=main2(n,a)
  print(ret2)
0