結果

問題 No.2036 Max Middle
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-04 23:28:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 185 bytes
コンパイル時間 467 ms
コンパイル使用メモリ 82,500 KB
実行使用メモリ 115,792 KB
最終ジャッジ日時 2024-09-04 23:29:02
合計ジャッジ時間 3,122 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,612 KB
testcase_01 AC 36 ms
52,948 KB
testcase_02 AC 35 ms
52,440 KB
testcase_03 AC 34 ms
52,756 KB
testcase_04 AC 36 ms
52,188 KB
testcase_05 AC 34 ms
52,476 KB
testcase_06 AC 33 ms
51,884 KB
testcase_07 AC 35 ms
52,336 KB
testcase_08 AC 74 ms
98,692 KB
testcase_09 AC 99 ms
104,976 KB
testcase_10 AC 120 ms
112,340 KB
testcase_11 AC 103 ms
108,044 KB
testcase_12 AC 102 ms
110,536 KB
testcase_13 AC 123 ms
112,808 KB
testcase_14 AC 45 ms
62,384 KB
testcase_15 AC 45 ms
61,876 KB
testcase_16 AC 111 ms
112,952 KB
testcase_17 AC 97 ms
115,792 KB
testcase_18 AC 95 ms
110,812 KB
testcase_19 AC 100 ms
110,740 KB
testcase_20 AC 103 ms
107,016 KB
権限があれば一括ダウンロードができます

ソースコード

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