結果

問題 No.2036 Max Middle
ユーザー tomeruntomerun
提出日時 2022-08-12 21:55:58
言語 Crystal
(1.11.2)
結果
AC  
実行時間 33 ms / 2,000 ms
コード長 282 bytes
コンパイル時間 13,359 ms
コンパイル使用メモリ 294,968 KB
実行使用メモリ 18,764 KB
最終ジャッジ日時 2024-09-23 02:24:03
合計ジャッジ時間 14,911 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 19 ms
10,384 KB
testcase_09 AC 30 ms
14,336 KB
testcase_10 AC 31 ms
15,320 KB
testcase_11 AC 27 ms
16,088 KB
testcase_12 AC 25 ms
16,584 KB
testcase_13 AC 33 ms
16,100 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 30 ms
18,764 KB
testcase_17 AC 22 ms
11,836 KB
testcase_18 AC 26 ms
16,236 KB
testcase_19 AC 26 ms
14,208 KB
testcase_20 AC 28 ms
16,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = read_line.to_i
a = read_line.split.map(&.to_i)
last = 0i64
1.upto(n - 1) do |i|
  last += a[i - 1] < a[i] ? 1 : -1
end
ans = 0i64
cur = 0i64
1.upto(n - 1) do |i|
  cur += a[i - 1] < a[i] ? 1 : -1
  bottom = {-i, last - (n - 1 - i)}.max
  ans += (cur - bottom) // 2
end
puts ans
0