結果

問題 No.1687 What the Heck?
ユーザー simansiman
提出日時 2021-09-26 04:57:21
言語 Ruby
(3.3.0)
結果
AC  
実行時間 243 ms / 2,000 ms
コード長 258 bytes
コンパイル時間 77 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 35,328 KB
最終ジャッジ日時 2024-07-05 15:34:36
合計ジャッジ時間 3,511 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
12,288 KB
testcase_01 AC 74 ms
12,160 KB
testcase_02 AC 72 ms
12,160 KB
testcase_03 AC 78 ms
12,288 KB
testcase_04 AC 77 ms
12,160 KB
testcase_05 AC 73 ms
12,032 KB
testcase_06 AC 74 ms
12,032 KB
testcase_07 AC 124 ms
21,760 KB
testcase_08 AC 141 ms
24,704 KB
testcase_09 AC 123 ms
21,760 KB
testcase_10 AC 104 ms
17,792 KB
testcase_11 AC 106 ms
18,048 KB
testcase_12 AC 215 ms
35,200 KB
testcase_13 AC 214 ms
35,072 KB
testcase_14 AC 220 ms
35,200 KB
testcase_15 AC 219 ms
35,328 KB
testcase_16 AC 214 ms
34,944 KB
testcase_17 AC 91 ms
13,440 KB
testcase_18 AC 243 ms
35,072 KB
testcase_19 AC 83 ms
12,032 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
P = gets.split.map(&:to_i)
rounds = Hash.new

P.each.with_index(1) do |x, i|
  rounds[x] = i
end

ans = 0
i = N
sum = (1..N).sum

while i >= 1
  score = sum - 2 * rounds[i]
  ans = score if ans < score
  sum -= rounds[i]
  i -= 1
end

puts ans
0