結果

問題 No.202 1円玉投げ
ユーザー te-shte-sh
提出日時 2016-09-16 11:24:29
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 366 ms / 5,000 ms
コード長 1,187 bytes
コンパイル時間 1,019 ms
コンパイル使用メモリ 121,216 KB
実行使用メモリ 86,456 KB
最終ジャッジ日時 2024-06-12 04:26:50
合計ジャッジ時間 9,536 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 366 ms
86,332 KB
testcase_01 AC 366 ms
82,744 KB
testcase_02 AC 44 ms
66,304 KB
testcase_03 AC 44 ms
66,432 KB
testcase_04 AC 45 ms
66,304 KB
testcase_05 AC 83 ms
67,644 KB
testcase_06 AC 308 ms
79,024 KB
testcase_07 AC 335 ms
80,580 KB
testcase_08 AC 340 ms
80,588 KB
testcase_09 AC 219 ms
74,820 KB
testcase_10 AC 130 ms
70,204 KB
testcase_11 AC 192 ms
73,408 KB
testcase_12 AC 195 ms
73,668 KB
testcase_13 AC 140 ms
70,480 KB
testcase_14 AC 86 ms
67,908 KB
testcase_15 AC 215 ms
74,424 KB
testcase_16 AC 307 ms
78,640 KB
testcase_17 AC 297 ms
78,524 KB
testcase_18 AC 294 ms
78,524 KB
testcase_19 AC 207 ms
74,176 KB
testcase_20 AC 281 ms
78,004 KB
testcase_21 AC 204 ms
74,044 KB
testcase_22 AC 65 ms
66,816 KB
testcase_23 AC 65 ms
66,688 KB
testcase_24 AC 64 ms
66,816 KB
testcase_25 AC 65 ms
66,688 KB
testcase_26 AC 66 ms
66,816 KB
testcase_27 AC 66 ms
66,816 KB
testcase_28 AC 64 ms
66,688 KB
testcase_29 AC 65 ms
66,816 KB
testcase_30 AC 66 ms
66,688 KB
testcase_31 AC 64 ms
66,688 KB
testcase_32 AC 66 ms
66,816 KB
testcase_33 AC 65 ms
66,688 KB
testcase_34 AC 66 ms
66,816 KB
testcase_35 AC 336 ms
86,332 KB
testcase_36 AC 357 ms
86,456 KB
testcase_37 AC 358 ms
81,344 KB
testcase_38 AC 339 ms
86,332 KB
testcase_39 AC 45 ms
66,432 KB
testcase_40 AC 45 ms
66,304 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.d(17): Deprecation: foreach: loop index implicitly converted from `size_t` to `int`

ソースコード

diff #

import std.algorithm, std.array, std.container, std.range, std.bitmanip;
import std.numeric, std.math, std.bigint, std.random, core.bitop;
import std.string, std.regex, std.conv, std.stdio, std.typecons;

auto maxX = 2000, maxY = 2000;

void main()
{
  auto n = readln.chomp.to!size_t;
  auto pi = iota(n)
    .map!(_ => readln.split.map!(to!int))
    .map!(rd => point(rd[0], rd[1])).array;

  auto buf = new int[][][](maxY + 1, maxX + 1);

  auto r = 0;
 loop: foreach (int i, p; pi) {
    auto x = p.x / 10, y = p.y / 10;
    auto xi = max(x - 1, 0), xa = min(x + 1, maxX);
    auto yi = max(y - 1, 0), ya = min(y + 1, maxY);

    int[] pc;
    foreach (yc; yi..ya+1)
      foreach (xc; xi..xa+1)
        pc ~= buf[yc][xc];

    foreach (c; pc)
      if ((p - pi[c]).hypot2 < 400) continue loop;

    foreach (yc; yi..ya+1)
      foreach (xc; xi..xa+1)
        buf[yc][xc] ~= i;

    ++r;
  }

  writeln(r);
}

struct Point(T) {
  T x, y;

  point opBinary(string op)(point rhs) {
    static if (op == "+") return point(x + rhs.x, y + rhs.y);
    else static if (op == "-") return point(x - rhs.x, y - rhs.y);
  }

  int hypot2() { return x ^^ 2 + y ^^ 2; }
}

alias Point!int point;
0