結果

問題 No.202 1円玉投げ
ユーザー gigurururugigurururu
提出日時 2015-05-04 09:13:12
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,162 ms / 5,000 ms
コード長 318 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 50,304 KB
最終ジャッジ日時 2024-12-22 08:17:33
合計ジャッジ時間 27,584 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,160 ms
50,304 KB
testcase_01 AC 1,119 ms
48,256 KB
testcase_02 AC 266 ms
34,688 KB
testcase_03 AC 265 ms
34,816 KB
testcase_04 AC 267 ms
34,688 KB
testcase_05 AC 326 ms
38,144 KB
testcase_06 AC 987 ms
47,616 KB
testcase_07 AC 1,065 ms
47,872 KB
testcase_08 AC 1,071 ms
47,872 KB
testcase_09 AC 722 ms
46,464 KB
testcase_10 AC 468 ms
45,312 KB
testcase_11 AC 639 ms
46,208 KB
testcase_12 AC 649 ms
46,208 KB
testcase_13 AC 478 ms
45,440 KB
testcase_14 AC 331 ms
39,296 KB
testcase_15 AC 696 ms
46,336 KB
testcase_16 AC 1,050 ms
48,256 KB
testcase_17 AC 1,067 ms
48,384 KB
testcase_18 AC 1,073 ms
48,384 KB
testcase_19 AC 661 ms
46,336 KB
testcase_20 AC 901 ms
47,232 KB
testcase_21 AC 660 ms
46,080 KB
testcase_22 AC 271 ms
35,712 KB
testcase_23 AC 274 ms
35,840 KB
testcase_24 AC 274 ms
35,712 KB
testcase_25 AC 272 ms
35,840 KB
testcase_26 AC 269 ms
35,840 KB
testcase_27 AC 279 ms
35,840 KB
testcase_28 AC 282 ms
35,840 KB
testcase_29 AC 280 ms
35,712 KB
testcase_30 AC 275 ms
35,712 KB
testcase_31 AC 281 ms
35,584 KB
testcase_32 AC 278 ms
35,840 KB
testcase_33 AC 275 ms
35,712 KB
testcase_34 AC 275 ms
35,840 KB
testcase_35 AC 1,116 ms
50,048 KB
testcase_36 AC 1,162 ms
50,304 KB
testcase_37 AC 1,104 ms
48,000 KB
testcase_38 AC 1,113 ms
50,048 KB
testcase_39 AC 265 ms
35,072 KB
testcase_40 AC 269 ms
34,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

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