結果

問題 No.2036 Max Middle
ユーザー とりゐとりゐ
提出日時 2022-08-12 22:16:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 108 ms / 2,000 ms
コード長 199 bytes
コンパイル時間 645 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 117,060 KB
最終ジャッジ日時 2024-09-23 02:52:00
合計ジャッジ時間 3,133 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,296 KB
testcase_01 AC 38 ms
53,456 KB
testcase_02 AC 37 ms
53,100 KB
testcase_03 AC 38 ms
52,216 KB
testcase_04 AC 38 ms
52,048 KB
testcase_05 AC 37 ms
52,892 KB
testcase_06 AC 39 ms
52,312 KB
testcase_07 AC 38 ms
51,744 KB
testcase_08 AC 74 ms
90,764 KB
testcase_09 AC 95 ms
104,276 KB
testcase_10 AC 107 ms
104,264 KB
testcase_11 AC 96 ms
112,980 KB
testcase_12 AC 89 ms
110,268 KB
testcase_13 AC 108 ms
104,996 KB
testcase_14 AC 45 ms
60,192 KB
testcase_15 AC 44 ms
59,552 KB
testcase_16 AC 104 ms
104,792 KB
testcase_17 AC 84 ms
105,584 KB
testcase_18 AC 94 ms
117,060 KB
testcase_19 AC 90 ms
110,908 KB
testcase_20 AC 95 ms
113,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))

gt=[]
for i in range(n-1):
  if a[i]<a[i+1]:
    gt.append(i)

m=len(gt)
tmp=n-2
ans=0
for i in range(m):
  ans+=tmp
  tmp-=1
  ans-=gt[i]

print(ans)
0