結果

問題 No.2335 Jump
ユーザー simansiman
提出日時 2023-06-03 01:46:27
言語 Ruby
(3.3.0)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 166 bytes
コンパイル時間 460 ms
コンパイル使用メモリ 11,164 KB
実行使用メモリ 22,192 KB
最終ジャッジ日時 2023-08-28 07:21:18
合計ジャッジ時間 4,365 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
15,072 KB
testcase_01 AC 76 ms
15,320 KB
testcase_02 AC 77 ms
15,080 KB
testcase_03 AC 77 ms
15,128 KB
testcase_04 AC 75 ms
15,132 KB
testcase_05 AC 76 ms
15,124 KB
testcase_06 AC 76 ms
15,304 KB
testcase_07 AC 78 ms
15,112 KB
testcase_08 AC 78 ms
15,120 KB
testcase_09 AC 78 ms
15,148 KB
testcase_10 AC 79 ms
15,132 KB
testcase_11 AC 78 ms
15,044 KB
testcase_12 AC 127 ms
21,976 KB
testcase_13 AC 127 ms
22,184 KB
testcase_14 AC 126 ms
22,140 KB
testcase_15 AC 125 ms
22,008 KB
testcase_16 AC 126 ms
21,948 KB
testcase_17 AC 123 ms
21,536 KB
testcase_18 AC 126 ms
22,192 KB
testcase_19 AC 128 ms
21,996 KB
testcase_20 AC 123 ms
21,620 KB
testcase_21 AC 125 ms
21,816 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
A = gets.split.map(&:to_i)
ans = N
last = N + 1

A.each do |a|
  if a <= N
    ans -= 1
  else
    ans += a - last
    last = a + 1
  end
end

puts ans
0