結果

問題 No.2053 12345...
ユーザー hPaProjecthPaProject
提出日時 2022-12-28 12:14:14
言語 Ruby
(3.3.0)
結果
AC  
実行時間 196 ms / 2,000 ms
コード長 345 bytes
コンパイル時間 558 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 27,904 KB
最終ジャッジ日時 2024-11-23 12:28:54
合計ジャッジ時間 8,004 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
12,032 KB
testcase_01 AC 88 ms
12,032 KB
testcase_02 AC 91 ms
12,032 KB
testcase_03 AC 112 ms
15,488 KB
testcase_04 AC 159 ms
23,040 KB
testcase_05 AC 104 ms
14,080 KB
testcase_06 AC 155 ms
21,120 KB
testcase_07 AC 139 ms
18,432 KB
testcase_08 AC 132 ms
17,920 KB
testcase_09 AC 164 ms
23,168 KB
testcase_10 AC 191 ms
26,624 KB
testcase_11 AC 103 ms
13,952 KB
testcase_12 AC 98 ms
12,928 KB
testcase_13 AC 183 ms
26,112 KB
testcase_14 AC 118 ms
15,872 KB
testcase_15 AC 114 ms
15,616 KB
testcase_16 AC 114 ms
15,488 KB
testcase_17 AC 107 ms
14,208 KB
testcase_18 AC 196 ms
27,776 KB
testcase_19 AC 166 ms
23,552 KB
testcase_20 AC 97 ms
12,544 KB
testcase_21 AC 134 ms
18,304 KB
testcase_22 AC 88 ms
12,288 KB
testcase_23 AC 99 ms
13,184 KB
testcase_24 AC 114 ms
15,744 KB
testcase_25 AC 183 ms
25,984 KB
testcase_26 AC 135 ms
18,432 KB
testcase_27 AC 113 ms
15,744 KB
testcase_28 AC 111 ms
14,976 KB
testcase_29 AC 154 ms
21,504 KB
testcase_30 AC 113 ms
15,488 KB
testcase_31 AC 149 ms
20,992 KB
testcase_32 AC 195 ms
27,904 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n = gets.to_i
str = gets.chomp.split(" ").map{|i| i.to_i}
cnt = 0
frag = 0
sum = 0

(n-1).times do |i|
    diff = str[i+1]-str[i]
    if frag != 0 && diff == frag then
        cnt += 1
        sum += cnt
    elsif diff == 1 || diff == -1 then
        cnt = 1
        sum += cnt
        frag = diff
    else
        frag = 0
    end
end

puts sum
0