結果

問題 No.2036 Max Middle
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-04 23:28:23
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 183 bytes
コンパイル時間 585 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 263,848 KB
最終ジャッジ日時 2024-09-04 23:28:54
合計ジャッジ時間 11,575 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,156 KB
testcase_01 AC 34 ms
51,996 KB
testcase_02 AC 36 ms
53,496 KB
testcase_03 AC 37 ms
52,068 KB
testcase_04 AC 36 ms
52,492 KB
testcase_05 AC 35 ms
52,676 KB
testcase_06 AC 38 ms
52,888 KB
testcase_07 AC 35 ms
52,620 KB
testcase_08 AC 582 ms
109,788 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 42 ms
64,784 KB
testcase_15 AC 43 ms
63,120 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
s=""
for i in range(n-1):
  s+="<" if a[i]<a[i+1] else ">"
b=0
c=0
for i in range(len(s)):
  if s[i]==">":
    b+=i-c
    c+=1
print(b)
0