結果

問題 No.2053 12345...
ユーザー hPaProjecthPaProject
提出日時 2022-12-28 12:14:14
言語 Ruby
(3.3.0)
結果
AC  
実行時間 173 ms / 2,000 ms
コード長 345 bytes
コンパイル時間 385 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 27,904 KB
最終ジャッジ日時 2024-05-02 18:43:26
合計ジャッジ時間 6,288 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
12,160 KB
testcase_01 AC 82 ms
12,160 KB
testcase_02 AC 85 ms
12,288 KB
testcase_03 AC 100 ms
15,360 KB
testcase_04 AC 153 ms
23,040 KB
testcase_05 AC 95 ms
13,952 KB
testcase_06 AC 143 ms
21,120 KB
testcase_07 AC 120 ms
18,688 KB
testcase_08 AC 123 ms
18,048 KB
testcase_09 AC 151 ms
23,296 KB
testcase_10 AC 172 ms
26,880 KB
testcase_11 AC 93 ms
14,080 KB
testcase_12 AC 90 ms
12,928 KB
testcase_13 AC 167 ms
26,112 KB
testcase_14 AC 108 ms
16,128 KB
testcase_15 AC 103 ms
15,616 KB
testcase_16 AC 97 ms
15,488 KB
testcase_17 AC 95 ms
14,208 KB
testcase_18 AC 173 ms
27,648 KB
testcase_19 AC 142 ms
23,808 KB
testcase_20 AC 80 ms
12,672 KB
testcase_21 AC 118 ms
18,432 KB
testcase_22 AC 75 ms
12,160 KB
testcase_23 AC 84 ms
13,440 KB
testcase_24 AC 98 ms
16,000 KB
testcase_25 AC 161 ms
26,240 KB
testcase_26 AC 119 ms
18,432 KB
testcase_27 AC 97 ms
15,744 KB
testcase_28 AC 96 ms
15,232 KB
testcase_29 AC 135 ms
21,376 KB
testcase_30 AC 99 ms
15,360 KB
testcase_31 AC 132 ms
21,120 KB
testcase_32 AC 170 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