結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
12,032 KB
testcase_01 AC 74 ms
12,032 KB
testcase_02 AC 73 ms
12,032 KB
testcase_03 AC 72 ms
12,160 KB
testcase_04 AC 72 ms
12,288 KB
testcase_05 AC 73 ms
12,160 KB
testcase_06 AC 71 ms
12,288 KB
testcase_07 AC 115 ms
21,760 KB
testcase_08 AC 128 ms
24,832 KB
testcase_09 AC 115 ms
21,760 KB
testcase_10 AC 97 ms
17,792 KB
testcase_11 AC 99 ms
18,048 KB
testcase_12 AC 187 ms
35,200 KB
testcase_13 AC 184 ms
35,072 KB
testcase_14 AC 184 ms
35,200 KB
testcase_15 AC 183 ms
35,200 KB
testcase_16 AC 183 ms
34,816 KB
testcase_17 AC 82 ms
13,568 KB
testcase_18 WA -
testcase_19 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:3: warning: assigned but unused variable - idx
Syntax OK

ソースコード

diff #

N = gets.to_i
P = gets.split.map(&:to_i)
idx = P.index(N) + 1
rounds = Hash.new

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

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

while i >= 2 && 2 * rounds[i - 1] <= rounds[i]
  sum -= rounds[i]
  i -= 1
end

puts [0, sum - 2 * rounds[i]].max
0