結果

問題 No.202 1円玉投げ
ユーザー TANIGUCHI KousukeTANIGUCHI Kousuke
提出日時 2015-08-20 13:33:55
言語 Ruby
(3.3.0)
結果
AC  
実行時間 3,085 ms / 5,000 ms
コード長 619 bytes
コンパイル時間 48 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 39,936 KB
最終ジャッジ日時 2024-06-01 20:39:30
合計ジャッジ時間 35,409 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3,073 ms
39,680 KB
testcase_01 AC 898 ms
35,456 KB
testcase_02 AC 147 ms
24,576 KB
testcase_03 AC 149 ms
24,448 KB
testcase_04 AC 145 ms
24,448 KB
testcase_05 AC 193 ms
27,008 KB
testcase_06 AC 785 ms
35,584 KB
testcase_07 AC 905 ms
35,840 KB
testcase_08 AC 907 ms
35,456 KB
testcase_09 AC 526 ms
35,328 KB
testcase_10 AC 298 ms
32,640 KB
testcase_11 AC 454 ms
34,816 KB
testcase_12 AC 459 ms
35,200 KB
testcase_13 AC 311 ms
32,896 KB
testcase_14 AC 199 ms
27,136 KB
testcase_15 AC 518 ms
34,304 KB
testcase_16 AC 2,275 ms
38,144 KB
testcase_17 AC 2,278 ms
38,016 KB
testcase_18 AC 2,280 ms
37,504 KB
testcase_19 AC 483 ms
35,200 KB
testcase_20 AC 707 ms
34,816 KB
testcase_21 AC 489 ms
35,072 KB
testcase_22 AC 165 ms
26,240 KB
testcase_23 AC 162 ms
26,112 KB
testcase_24 AC 156 ms
26,496 KB
testcase_25 AC 156 ms
25,728 KB
testcase_26 AC 157 ms
26,112 KB
testcase_27 AC 154 ms
25,728 KB
testcase_28 AC 154 ms
26,624 KB
testcase_29 AC 154 ms
25,728 KB
testcase_30 AC 155 ms
26,368 KB
testcase_31 AC 158 ms
25,472 KB
testcase_32 AC 156 ms
25,216 KB
testcase_33 AC 162 ms
27,136 KB
testcase_34 AC 188 ms
28,416 KB
testcase_35 AC 3,064 ms
39,936 KB
testcase_36 AC 3,085 ms
39,680 KB
testcase_37 AC 930 ms
35,840 KB
testcase_38 AC 3,009 ms
39,808 KB
testcase_39 AC 149 ms
24,704 KB
testcase_40 AC 148 ms
24,704 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

# Here your code !
MAX = 20000
CELL = 40
SEG = MAX.div(CELL) + 3
ZONE = SEG.times.map { SEG.times.map { [] } }

n = gets.to_i
coins = n.times.map { gets.split.map(&:to_i) }


puts coins.inject(0) {|s,c|
    cx, cy = c.map {|v| v / CELL + 1}
    nears = [cx - 1, cx, cx + 1].product([cy - 1, cy, cy + 1])
    intersect = nears.all? do |dx,dy|
        begin
        ZONE[dx][dy].empty? || ZONE[dx][dy].all? { |v| 2.times.inject(0) {|q,i| q + (c[i] - v[i]) ** 2} >= 400  }
        rescue
            p [dx,dy]
        end
    end

    unless intersect
        s
    else
        ZONE[cx][cy].push(c)
        s+1
    end
}
0