結果

問題 No.1965 Heavier
ユーザー simansiman
提出日時 2022-06-07 17:07:45
言語 Ruby
(3.3.0)
結果
AC  
実行時間 297 ms / 2,000 ms
コード長 333 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 34,176 KB
最終ジャッジ日時 2024-09-21 04:53:46
合計ジャッジ時間 8,823 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
12,160 KB
testcase_01 AC 79 ms
12,160 KB
testcase_02 AC 80 ms
12,160 KB
testcase_03 AC 79 ms
12,160 KB
testcase_04 AC 84 ms
12,160 KB
testcase_05 AC 81 ms
12,288 KB
testcase_06 AC 290 ms
33,664 KB
testcase_07 AC 283 ms
33,792 KB
testcase_08 AC 285 ms
33,792 KB
testcase_09 AC 291 ms
33,920 KB
testcase_10 AC 283 ms
34,048 KB
testcase_11 AC 280 ms
33,920 KB
testcase_12 AC 80 ms
12,288 KB
testcase_13 AC 78 ms
12,288 KB
testcase_14 AC 78 ms
12,160 KB
testcase_15 AC 282 ms
33,664 KB
testcase_16 AC 279 ms
33,792 KB
testcase_17 AC 220 ms
31,616 KB
testcase_18 AC 285 ms
33,792 KB
testcase_19 AC 282 ms
33,024 KB
testcase_20 AC 297 ms
33,664 KB
testcase_21 AC 295 ms
33,024 KB
testcase_22 AC 279 ms
33,024 KB
testcase_23 AC 207 ms
31,360 KB
testcase_24 AC 253 ms
32,128 KB
testcase_25 AC 286 ms
33,664 KB
testcase_26 AC 284 ms
33,408 KB
testcase_27 AC 292 ms
34,048 KB
testcase_28 AC 291 ms
34,176 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
A = gets.split.map(&:to_i)
B = gets.split.map(&:to_i)

ans = 0
len = 0

(N - 1).times do |i|
  a1, b1 = A[i], B[i]
  a2, b2 = A[i + 1], B[i + 1]
  min_b, max_b = [b1, b2].minmax

  if a1 + max_b < a2 + min_b
    len += 1
  else
    ans += len * (1 + len) / 2
    len = 0
  end
end

ans += len * (1 + len) / 2

puts ans
0