結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 AC 89 ms
34,048 KB
testcase_03 AC 89 ms
17,664 KB
testcase_04 AC 85 ms
33,280 KB
testcase_05 AC 168 ms
20,512 KB
testcase_06 AC 4,801 ms
42,240 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 AC 2,292 ms
40,192 KB
testcase_10 AC 595 ms
20,480 KB
testcase_11 AC 1,697 ms
39,808 KB
testcase_12 AC 1,749 ms
18,944 KB
testcase_13 AC 672 ms
16,768 KB
testcase_14 AC 190 ms
13,696 KB
testcase_15 AC 2,174 ms
19,200 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 1,890 ms
19,072 KB
testcase_20 AC 4,274 ms
20,992 KB
testcase_21 AC 1,934 ms
19,072 KB
testcase_22 AC 120 ms
12,288 KB
testcase_23 AC 123 ms
12,672 KB
testcase_24 AC 117 ms
12,416 KB
testcase_25 AC 105 ms
12,416 KB
testcase_26 AC 122 ms
12,544 KB
testcase_27 AC 124 ms
12,672 KB
testcase_28 AC 120 ms
12,416 KB
testcase_29 AC 106 ms
12,544 KB
testcase_30 AC 126 ms
12,416 KB
testcase_31 AC 101 ms
12,416 KB
testcase_32 AC 104 ms
12,544 KB
testcase_33 AC 196 ms
12,544 KB
testcase_34 AC 485 ms
12,544 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 AC 107 ms
12,672 KB
testcase_40 AC 104 ms
33,280 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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) + 1}
    
    insec = (i-1..i+1).each.all? { |di|
        (j-1..j+1).each.all? { |dj|
            areas[di][dj] ||= []
            areas[di][dj].all? {|put| d2(put,c) >= 400}
        }
    }
    
    if insec
        areas[i][j].push(c)
        s+1
    else
        s
    end
}

puts s
0