結果

問題 No.871 かえるのうた
ユーザー wipexwipex
提出日時 2019-11-10 21:27:08
言語 Ruby
(3.3.0)
結果
AC  
実行時間 196 ms / 2,000 ms
コード長 779 bytes
コンパイル時間 753 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 35,328 KB
最終ジャッジ日時 2024-05-07 16:35:16
合計ジャッジ時間 7,062 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
12,288 KB
testcase_01 AC 88 ms
12,160 KB
testcase_02 AC 87 ms
12,288 KB
testcase_03 AC 84 ms
12,288 KB
testcase_04 AC 83 ms
12,288 KB
testcase_05 AC 83 ms
12,288 KB
testcase_06 AC 81 ms
12,032 KB
testcase_07 AC 85 ms
12,416 KB
testcase_08 AC 86 ms
12,288 KB
testcase_09 AC 86 ms
12,288 KB
testcase_10 AC 84 ms
12,160 KB
testcase_11 AC 87 ms
12,288 KB
testcase_12 AC 98 ms
15,104 KB
testcase_13 AC 86 ms
12,544 KB
testcase_14 AC 174 ms
31,600 KB
testcase_15 AC 177 ms
31,840 KB
testcase_16 AC 196 ms
35,328 KB
testcase_17 AC 172 ms
29,904 KB
testcase_18 AC 98 ms
15,744 KB
testcase_19 AC 175 ms
31,872 KB
testcase_20 AC 92 ms
13,312 KB
testcase_21 AC 119 ms
19,268 KB
testcase_22 AC 81 ms
12,160 KB
testcase_23 AC 80 ms
12,160 KB
testcase_24 AC 82 ms
12,288 KB
testcase_25 AC 86 ms
12,416 KB
testcase_26 AC 89 ms
12,800 KB
testcase_27 AC 92 ms
14,208 KB
testcase_28 AC 80 ms
12,288 KB
testcase_29 AC 124 ms
21,504 KB
testcase_30 AC 148 ms
25,344 KB
testcase_31 AC 85 ms
12,288 KB
testcase_32 AC 143 ms
23,680 KB
testcase_33 AC 161 ms
29,952 KB
testcase_34 AC 99 ms
16,128 KB
testcase_35 AC 127 ms
23,040 KB
testcase_36 AC 152 ms
23,680 KB
testcase_37 AC 122 ms
20,608 KB
testcase_38 AC 180 ms
26,100 KB
testcase_39 AC 171 ms
25,432 KB
testcase_40 AC 144 ms
22,144 KB
testcase_41 AC 81 ms
12,288 KB
testcase_42 AC 140 ms
22,272 KB
testcase_43 AC 81 ms
12,288 KB
testcase_44 AC 80 ms
12,288 KB
testcase_45 AC 84 ms
12,288 KB
testcase_46 AC 82 ms
12,160 KB
testcase_47 AC 81 ms
12,160 KB
testcase_48 AC 81 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:26: warning: assigned but unused variable - p
Syntax OK

ソースコード

diff #

@x=[];a=[];@t=[]
n,k = gets.chomp.split(" ").map(&:to_i)
@x+=gets.chomp.split(" ").map(&:to_i)
a+=gets.chomp.split(" ").map(&:to_i)

def max(a,b)
 if a > b
   return a
 elsif b > a
   return b
 else
   return a
 end
end

def min(a,b)
 if a > b
   return b
 elsif b > a
   return a
 else
   return a
 end
end

p=@x[k-1]

l = r = k - 1
ld, rd = @x[k - 1] - a[k - 1], @x[k - 1] + a[k - 1]

updated = true
while(updated)
    updated = false

    while (l - 1 >= 0) and (ld <= @x[l - 1])
        updated = true
        l -= 1
        ld = min(ld, @x[l] - a[l])
        rd = max(rd, @x[l] + a[l])
    end

    while (r + 1 < n) and (rd >= @x[r + 1])
        updated = true
        r += 1
        ld = min(ld, @x[r] - a[r])
        rd = max(rd, @x[r] + a[r])
    end
end

p (r - l + 1)
0