結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,265 ms
36,864 KB
testcase_01 AC 1,056 ms
32,768 KB
testcase_02 AC 183 ms
24,320 KB
testcase_03 AC 186 ms
24,448 KB
testcase_04 AC 186 ms
24,320 KB
testcase_05 AC 253 ms
26,624 KB
testcase_06 AC 907 ms
32,768 KB
testcase_07 AC 991 ms
32,768 KB
testcase_08 AC 977 ms
32,768 KB
testcase_09 AC 623 ms
32,768 KB
testcase_10 AC 374 ms
32,640 KB
testcase_11 AC 557 ms
32,768 KB
testcase_12 AC 558 ms
32,768 KB
testcase_13 AC 397 ms
32,768 KB
testcase_14 AC 261 ms
27,520 KB
testcase_15 AC 614 ms
32,768 KB
testcase_16 AC 1,106 ms
35,200 KB
testcase_17 AC 1,103 ms
35,200 KB
testcase_18 AC 1,120 ms
35,200 KB
testcase_19 AC 582 ms
32,768 KB
testcase_20 AC 814 ms
32,768 KB
testcase_21 AC 583 ms
32,640 KB
testcase_22 AC 188 ms
25,344 KB
testcase_23 AC 191 ms
25,344 KB
testcase_24 AC 191 ms
25,344 KB
testcase_25 AC 192 ms
25,216 KB
testcase_26 AC 192 ms
25,344 KB
testcase_27 AC 195 ms
25,472 KB
testcase_28 AC 189 ms
25,216 KB
testcase_29 AC 190 ms
25,216 KB
testcase_30 AC 194 ms
25,472 KB
testcase_31 AC 191 ms
25,216 KB
testcase_32 AC 201 ms
25,344 KB
testcase_33 AC 194 ms
25,344 KB
testcase_34 AC 200 ms
25,472 KB
testcase_35 AC 1,224 ms
36,992 KB
testcase_36 AC 1,263 ms
36,864 KB
testcase_37 AC 1,058 ms
32,768 KB
testcase_38 AC 1,226 ms
36,992 KB
testcase_39 AC 197 ms
24,576 KB
testcase_40 AC 183 ms
24,576 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n=gets.to_i
MAX=20000
DIV=40
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