結果

問題 No.202 1円玉投げ
ユーザー TANIGUCHI KousukeTANIGUCHI Kousuke
提出日時 2015-07-31 18:48:30
言語 Ruby
(3.4.1)
結果
TLE  
実行時間 -
コード長 270 bytes
コンパイル時間 679 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 34,640 KB
最終ジャッジ日時 2024-12-22 09:44:26
合計ジャッジ時間 154,182 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 AC 97 ms
19,108 KB
testcase_03 AC 97 ms
24,960 KB
testcase_04 AC 95 ms
17,536 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 860 ms
33,024 KB
testcase_23 AC 849 ms
33,408 KB
testcase_24 AC 143 ms
19,364 KB
testcase_25 AC 141 ms
12,544 KB
testcase_26 AC 839 ms
12,544 KB
testcase_27 AC 854 ms
12,544 KB
testcase_28 AC 140 ms
12,416 KB
testcase_29 AC 139 ms
12,544 KB
testcase_30 AC 877 ms
12,416 KB
testcase_31 AC 101 ms
12,160 KB
testcase_32 AC 865 ms
12,544 KB
testcase_33 AC 394 ms
12,544 KB
testcase_34 AC 875 ms
12,544 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 AC 152 ms
12,288 KB
testcase_40 AC 114 ms
33,024 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def distance(x,y)
    2.times.inject(0) {|s, a| s + (x[a] - y[a]) ** 2 }
end

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

seat = coins.inject([]) {|s, i|
    unless s.any? {|j| distance(i,j) < 400 }
        s.push(i)
    end
    s
}

puts seat.size
0