結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 2,920 ms
29,220 KB
testcase_02 AC 87 ms
33,408 KB
testcase_03 AC 90 ms
19,232 KB
testcase_04 AC 91 ms
19,236 KB
testcase_05 AC 165 ms
21,668 KB
testcase_06 AC 2,006 ms
42,752 KB
testcase_07 AC 2,438 ms
22,656 KB
testcase_08 AC 2,457 ms
22,528 KB
testcase_09 AC 1,076 ms
19,712 KB
testcase_10 AC 396 ms
17,664 KB
testcase_11 AC 869 ms
19,200 KB
testcase_12 AC 864 ms
19,072 KB
testcase_13 AC 433 ms
17,792 KB
testcase_14 AC 176 ms
15,232 KB
testcase_15 AC 1,032 ms
19,584 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 938 ms
19,328 KB
testcase_20 AC 1,715 ms
20,992 KB
testcase_21 AC 933 ms
19,328 KB
testcase_22 AC 115 ms
12,544 KB
testcase_23 AC 115 ms
12,672 KB
testcase_24 AC 112 ms
12,416 KB
testcase_25 AC 106 ms
12,544 KB
testcase_26 AC 114 ms
12,544 KB
testcase_27 AC 115 ms
12,800 KB
testcase_28 AC 108 ms
12,672 KB
testcase_29 AC 107 ms
12,544 KB
testcase_30 AC 115 ms
12,544 KB
testcase_31 AC 105 ms
12,416 KB
testcase_32 AC 102 ms
12,800 KB
testcase_33 AC 146 ms
12,672 KB
testcase_34 AC 255 ms
12,672 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 AC 2,793 ms
23,040 KB
testcase_38 TLE -
testcase_39 AC 96 ms
12,672 KB
testcase_40 AC 95 ms
33,024 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 = 210.times.map { Array.new(210) }

s = coins.inject(0) {|s,c|
    i,j = c.map {|v| v.div(100) + 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