結果

問題 No.909 たぴの配置
ユーザー maimai
提出日時 2019-10-18 21:34:39
言語 Ruby
(3.3.0)
結果
AC  
実行時間 471 ms / 3,000 ms
コード長 167 bytes
コンパイル時間 383 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 35,968 KB
最終ジャッジ日時 2024-06-25 15:08:47
合計ジャッジ時間 8,257 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
12,160 KB
testcase_01 AC 92 ms
12,288 KB
testcase_02 AC 92 ms
12,160 KB
testcase_03 AC 90 ms
12,160 KB
testcase_04 AC 92 ms
12,288 KB
testcase_05 AC 446 ms
35,584 KB
testcase_06 AC 458 ms
35,712 KB
testcase_07 AC 442 ms
34,944 KB
testcase_08 AC 458 ms
35,456 KB
testcase_09 AC 471 ms
35,968 KB
testcase_10 AC 444 ms
35,072 KB
testcase_11 AC 443 ms
34,944 KB
testcase_12 AC 455 ms
35,456 KB
testcase_13 AC 457 ms
35,712 KB
testcase_14 AC 448 ms
35,200 KB
testcase_15 AC 442 ms
34,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:3: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

def lscan; gets.split.map(&:to_i); end

n = gets.to_i
xy = [lscan,lscan].transpose

mx = xy.map{|x,y| x+y}.min

p mx
p 0
puts xy.map{|x,y| [0, [mx-y, x].min].max}
p mx
0