結果
問題 | No.202 1円玉投げ |
ユーザー | らっしー(raccy) |
提出日時 | 2015-05-04 00:11:01 |
言語 | Ruby (3.3.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 403 bytes |
コンパイル時間 | 263 ms |
コンパイル使用メモリ | 7,552 KB |
実行使用メモリ | 27,072 KB |
最終ジャッジ日時 | 2024-12-22 06:52:53 |
合計ジャッジ時間 | 149,002 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | TLE | - |
testcase_02 | AC | 78 ms
25,216 KB |
testcase_03 | AC | 77 ms
12,416 KB |
testcase_04 | AC | 78 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 | 247 ms
25,344 KB |
testcase_23 | AC | 251 ms
25,216 KB |
testcase_24 | AC | 89 ms
12,288 KB |
testcase_25 | AC | 89 ms
12,288 KB |
testcase_26 | AC | 243 ms
12,160 KB |
testcase_27 | AC | 242 ms
12,288 KB |
testcase_28 | AC | 90 ms
12,288 KB |
testcase_29 | AC | 87 ms
12,160 KB |
testcase_30 | AC | 249 ms
12,416 KB |
testcase_31 | AC | 86 ms
12,416 KB |
testcase_32 | AC | 256 ms
12,288 KB |
testcase_33 | AC | 149 ms
12,288 KB |
testcase_34 | AC | 274 ms
12,416 KB |
testcase_35 | TLE | - |
testcase_36 | TLE | - |
testcase_37 | TLE | - |
testcase_38 | TLE | - |
testcase_39 | AC | 93 ms
12,416 KB |
testcase_40 | AC | 85 ms
24,960 KB |
コンパイルメッセージ
Syntax OK
ソースコード
class Ichien attr_reader :point def initialize(x, y) @point = Complex(x, y) end def kasanaru(other) (@point - other.point).abs < 20 end end n = gets.to_i list = [] n.times do ichi = Ichien.new(*gets.split.map(&:to_f)) okeru = true list.each do |oita| if ichi.kasanaru(oita) okeru = false break end end if okeru list << ichi end end puts list.size