結果

問題 No.202 1円玉投げ
ユーザー gigurururugigurururu
提出日時 2015-05-04 01:10:02
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 299 bytes
コンパイル時間 421 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 177,360 KB
最終ジャッジ日時 2024-12-22 08:09:11
合計ジャッジ時間 83,983 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 3,768 ms
103,080 KB
testcase_02 AC 124 ms
122,752 KB
testcase_03 AC 118 ms
122,880 KB
testcase_04 AC 120 ms
31,648 KB
testcase_05 AC 376 ms
177,360 KB
testcase_06 AC 2,843 ms
98,464 KB
testcase_07 AC 3,194 ms
94,848 KB
testcase_08 AC 3,477 ms
94,336 KB
testcase_09 AC 1,648 ms
83,200 KB
testcase_10 AC 725 ms
81,280 KB
testcase_11 AC 1,332 ms
87,936 KB
testcase_12 AC 1,387 ms
87,936 KB
testcase_13 AC 815 ms
86,400 KB
testcase_14 AC 410 ms
79,740 KB
testcase_15 AC 1,618 ms
88,064 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 1,535 ms
82,944 KB
testcase_20 AC 2,531 ms
91,008 KB
testcase_21 AC 1,482 ms
87,936 KB
testcase_22 AC 170 ms
61,696 KB
testcase_23 AC 170 ms
61,696 KB
testcase_24 AC 142 ms
31,232 KB
testcase_25 AC 134 ms
24,832 KB
testcase_26 AC 202 ms
85,120 KB
testcase_27 AC 124 ms
25,088 KB
testcase_28 AC 129 ms
24,832 KB
testcase_29 AC 129 ms
24,832 KB
testcase_30 AC 170 ms
61,184 KB
testcase_31 AC 130 ms
24,576 KB
testcase_32 AC 170 ms
61,696 KB
testcase_33 AC 161 ms
46,848 KB
testcase_34 AC 229 ms
85,376 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 AC 3,487 ms
95,104 KB
testcase_38 TLE -
testcase_39 AC 140 ms
36,096 KB
testcase_40 AC 131 ms
131,456 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n=gets.to_i
MAX=20000
DIV=141
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
  if [*vx-1..vx+1].product([*vy-1..vy+1]).flat_map{|tx,ty|l[tx][ty]}.all?{|tx,ty|(tx-x)**2+(ty-y)**2>=400}
    l[vx][vy]<<[x,y]
  end
}
p l.inject(:+).inject(:+).size
0