結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,100 ms
77,440 KB
testcase_01 AC 1,118 ms
77,568 KB
testcase_02 AC 386 ms
63,744 KB
testcase_03 AC 396 ms
63,616 KB
testcase_04 AC 414 ms
63,872 KB
testcase_05 AC 431 ms
70,400 KB
testcase_06 AC 1,024 ms
76,416 KB
testcase_07 AC 1,106 ms
76,544 KB
testcase_08 AC 1,126 ms
76,672 KB
testcase_09 AC 870 ms
75,264 KB
testcase_10 AC 579 ms
73,984 KB
testcase_11 AC 776 ms
75,008 KB
testcase_12 AC 782 ms
75,008 KB
testcase_13 AC 630 ms
73,984 KB
testcase_14 AC 434 ms
71,552 KB
testcase_15 AC 819 ms
75,008 KB
testcase_16 AC 1,017 ms
77,440 KB
testcase_17 AC 1,068 ms
77,568 KB
testcase_18 AC 1,043 ms
77,440 KB
testcase_19 AC 807 ms
75,136 KB
testcase_20 AC 972 ms
76,160 KB
testcase_21 AC 798 ms
75,136 KB
testcase_22 AC 399 ms
64,768 KB
testcase_23 AC 402 ms
64,768 KB
testcase_24 AC 384 ms
64,640 KB
testcase_25 AC 477 ms
64,640 KB
testcase_26 AC 390 ms
64,640 KB
testcase_27 AC 393 ms
64,640 KB
testcase_28 AC 392 ms
64,768 KB
testcase_29 AC 392 ms
64,640 KB
testcase_30 AC 398 ms
64,640 KB
testcase_31 AC 409 ms
64,512 KB
testcase_32 AC 400 ms
64,640 KB
testcase_33 AC 394 ms
64,768 KB
testcase_34 AC 399 ms
64,512 KB
testcase_35 AC 1,063 ms
77,568 KB
testcase_36 AC 1,137 ms
77,568 KB
testcase_37 AC 1,162 ms
76,800 KB
testcase_38 AC 1,082 ms
77,440 KB
testcase_39 AC 392 ms
63,872 KB
testcase_40 AC 395 ms
63,744 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

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