結果

問題 No.202 1円玉投げ
ユーザー TANIGUCHI KousukeTANIGUCHI Kousuke
提出日時 2015-08-19 12:43:07
言語 Ruby
(3.4.1)
結果
TLE  
実行時間 -
コード長 416 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 43,904 KB
最終ジャッジ日時 2024-12-22 09:58:17
合計ジャッジ時間 59,013 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 1,085 ms
43,904 KB
testcase_02 AC 96 ms
33,536 KB
testcase_03 AC 85 ms
12,160 KB
testcase_04 AC 92 ms
12,288 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 97 ms
12,544 KB
testcase_23 AC 95 ms
12,544 KB
testcase_24 AC 100 ms
12,416 KB
testcase_25 WA -
testcase_26 AC 99 ms
12,672 KB
testcase_27 AC 99 ms
12,544 KB
testcase_28 AC 98 ms
12,544 KB
testcase_29 WA -
testcase_30 AC 102 ms
12,416 KB
testcase_31 AC 93 ms
12,288 KB
testcase_32 AC 91 ms
12,160 KB
testcase_33 WA -
testcase_34 AC 162 ms
12,288 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 WA -
testcase_38 TLE -
testcase_39 AC 94 ms
12,288 KB
testcase_40 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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 = 200.times.map { Array.new(200) }

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