結果

問題 No.202 1円玉投げ
ユーザー gigurururugigurururu
提出日時 2015-05-04 09:08:06
言語 Ruby
(3.3.0)
結果
AC  
実行時間 2,058 ms / 5,000 ms
コード長 303 bytes
コンパイル時間 842 ms
コンパイル使用メモリ 7,168 KB
実行使用メモリ 42,496 KB
最終ジャッジ日時 2024-12-22 08:16:36
合計ジャッジ時間 36,046 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,624 ms
26,496 KB
testcase_01 AC 2,056 ms
42,496 KB
testcase_02 AC 96 ms
12,288 KB
testcase_03 AC 100 ms
12,160 KB
testcase_04 AC 99 ms
12,032 KB
testcase_05 AC 209 ms
28,032 KB
testcase_06 AC 1,669 ms
40,192 KB
testcase_07 AC 1,875 ms
40,448 KB
testcase_08 AC 1,902 ms
40,448 KB
testcase_09 AC 1,066 ms
38,272 KB
testcase_10 AC 503 ms
34,688 KB
testcase_11 AC 910 ms
36,736 KB
testcase_12 AC 927 ms
36,736 KB
testcase_13 AC 531 ms
34,944 KB
testcase_14 AC 229 ms
29,184 KB
testcase_15 AC 1,032 ms
38,016 KB
testcase_16 AC 1,296 ms
21,504 KB
testcase_17 AC 1,555 ms
23,296 KB
testcase_18 AC 1,559 ms
23,168 KB
testcase_19 AC 1,033 ms
36,864 KB
testcase_20 AC 1,504 ms
40,064 KB
testcase_21 AC 992 ms
36,992 KB
testcase_22 AC 111 ms
12,672 KB
testcase_23 AC 127 ms
23,680 KB
testcase_24 AC 113 ms
12,800 KB
testcase_25 AC 111 ms
12,800 KB
testcase_26 AC 109 ms
12,800 KB
testcase_27 AC 111 ms
12,544 KB
testcase_28 AC 112 ms
12,672 KB
testcase_29 AC 113 ms
12,672 KB
testcase_30 AC 119 ms
18,048 KB
testcase_31 AC 108 ms
12,672 KB
testcase_32 AC 119 ms
17,024 KB
testcase_33 AC 105 ms
12,800 KB
testcase_34 AC 109 ms
12,672 KB
testcase_35 AC 1,425 ms
21,760 KB
testcase_36 AC 1,859 ms
31,744 KB
testcase_37 AC 2,058 ms
40,576 KB
testcase_38 AC 1,437 ms
21,760 KB
testcase_39 AC 97 ms
12,416 KB
testcase_40 AC 103 ms
12,416 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n=gets.to_i
MAX=20000
DIV=14
l=(0..MAX/DIV+2).map{[]}
n.times{
  x,y=gets.split.map(&:to_i)
  vx,vy=x/DIV,y/DIV
  d=[*vx-2..vx+2].product([*vy-2..vy+2])
  if d.select{|ux,uy|l[ux][uy]}.all?{|ux,uy|tx,ty=l[ux][uy];(tx-x)**2+(ty-y)**2>=400}
    l[vx][vy]=[x,y]
  end
}
p l.inject(0){|s,i|s+i.compact.size}
0