結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
12,160 KB
testcase_01 AC 79 ms
12,416 KB
testcase_02 AC 79 ms
12,288 KB
testcase_03 AC 77 ms
12,032 KB
testcase_04 AC 78 ms
12,416 KB
testcase_05 AC 78 ms
12,032 KB
testcase_06 AC 74 ms
12,160 KB
testcase_07 AC 74 ms
12,416 KB
testcase_08 AC 78 ms
12,160 KB
testcase_09 AC 77 ms
12,416 KB
testcase_10 AC 77 ms
12,160 KB
testcase_11 AC 77 ms
12,032 KB
testcase_12 AC 90 ms
15,104 KB
testcase_13 AC 80 ms
12,672 KB
testcase_14 AC 164 ms
31,600 KB
testcase_15 AC 169 ms
31,592 KB
testcase_16 AC 191 ms
35,456 KB
testcase_17 AC 158 ms
29,772 KB
testcase_18 AC 91 ms
15,488 KB
testcase_19 AC 167 ms
31,828 KB
testcase_20 AC 86 ms
13,184 KB
testcase_21 AC 113 ms
19,024 KB
testcase_22 AC 80 ms
12,160 KB
testcase_23 AC 76 ms
12,160 KB
testcase_24 AC 77 ms
12,032 KB
testcase_25 AC 78 ms
12,160 KB
testcase_26 AC 84 ms
12,672 KB
testcase_27 AC 86 ms
14,208 KB
testcase_28 AC 78 ms
12,032 KB
testcase_29 AC 122 ms
22,528 KB
testcase_30 AC 147 ms
25,216 KB
testcase_31 AC 82 ms
12,160 KB
testcase_32 AC 133 ms
23,552 KB
testcase_33 AC 150 ms
29,952 KB
testcase_34 AC 96 ms
16,256 KB
testcase_35 AC 122 ms
23,168 KB
testcase_36 AC 141 ms
23,680 KB
testcase_37 AC 116 ms
20,352 KB
testcase_38 AC 167 ms
26,104 KB
testcase_39 AC 167 ms
25,668 KB
testcase_40 AC 132 ms
22,400 KB
testcase_41 AC 77 ms
12,032 KB
testcase_42 AC 131 ms
22,144 KB
testcase_43 AC 79 ms
12,160 KB
testcase_44 AC 76 ms
12,160 KB
testcase_45 AC 80 ms
12,416 KB
testcase_46 AC 78 ms
12,416 KB
testcase_47 AC 76 ms
12,160 KB
testcase_48 AC 76 ms
12,416 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