結果

問題 No.202 1円玉投げ
ユーザー TANIGUCHI KousukeTANIGUCHI Kousuke
提出日時 2015-08-19 12:41:06
言語 Ruby
(3.3.0)
結果
RE  
実行時間 -
コード長 416 bytes
コンパイル時間 321 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 26,368 KB
最終ジャッジ日時 2024-06-01 20:36:57
合計ジャッジ時間 29,500 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 AC 85 ms
12,032 KB
testcase_03 AC 85 ms
12,288 KB
testcase_04 AC 88 ms
12,160 KB
testcase_05 RE -
testcase_06 WA -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 WA -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 WA -
testcase_15 RE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 AC 97 ms
12,544 KB
testcase_23 RE -
testcase_24 AC 97 ms
12,672 KB
testcase_25 RE -
testcase_26 AC 95 ms
12,544 KB
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 AC 90 ms
12,416 KB
testcase_32 AC 90 ms
12,288 KB
testcase_33 RE -
testcase_34 AC 152 ms
12,544 KB
testcase_35 TLE -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

# Here your code !
def d2(a,b)
    2.times.inject(0) do |s, i|
        s + (a[i] - b[i]) ** 2
    end
end

n = gets.to_i
coins = n.times.map {gets.split.map(&:to_i)}
areas = 100.times.map { Array.new(100) }

s = coins.inject(0) {|s,c|
    i,j = c.map {|v| v.div 200}
    areas[i][j] ||= []
    if areas[i][j].all? {|put| d2(put,c) >= 400}
        areas[i][j].push(c)
        s+1
    else
        s
    end
}

puts s
0