結果

問題 No.202 1円玉投げ
ユーザー nebukuro09nebukuro09
提出日時 2016-11-16 20:25:23
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 1,084 ms / 5,000 ms
コード長 857 bytes
コンパイル時間 802 ms
コンパイル使用メモリ 110,940 KB
実行使用メモリ 404,176 KB
最終ジャッジ日時 2024-06-12 05:06:28
合計ジャッジ時間 21,694 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 784 ms
404,084 KB
testcase_01 AC 1,084 ms
404,016 KB
testcase_02 AC 116 ms
403,028 KB
testcase_03 AC 116 ms
403,024 KB
testcase_04 AC 115 ms
403,116 KB
testcase_05 AC 175 ms
404,104 KB
testcase_06 AC 881 ms
404,048 KB
testcase_07 AC 970 ms
403,968 KB
testcase_08 AC 986 ms
404,036 KB
testcase_09 AC 611 ms
404,056 KB
testcase_10 AC 331 ms
404,060 KB
testcase_11 AC 526 ms
404,052 KB
testcase_12 AC 533 ms
404,040 KB
testcase_13 AC 352 ms
404,012 KB
testcase_14 AC 185 ms
403,952 KB
testcase_15 AC 598 ms
403,980 KB
testcase_16 AC 685 ms
403,940 KB
testcase_17 AC 750 ms
403,960 KB
testcase_18 AC 749 ms
403,956 KB
testcase_19 AC 567 ms
403,988 KB
testcase_20 AC 857 ms
404,036 KB
testcase_21 AC 550 ms
404,176 KB
testcase_22 AC 123 ms
403,132 KB
testcase_23 AC 126 ms
403,100 KB
testcase_24 AC 118 ms
403,120 KB
testcase_25 AC 121 ms
403,140 KB
testcase_26 AC 119 ms
403,180 KB
testcase_27 AC 123 ms
403,104 KB
testcase_28 AC 120 ms
403,128 KB
testcase_29 AC 118 ms
403,096 KB
testcase_30 AC 125 ms
403,120 KB
testcase_31 AC 119 ms
403,156 KB
testcase_32 AC 127 ms
403,208 KB
testcase_33 AC 121 ms
403,116 KB
testcase_34 AC 123 ms
403,108 KB
testcase_35 AC 724 ms
404,168 KB
testcase_36 AC 902 ms
403,944 KB
testcase_37 AC 1,039 ms
404,052 KB
testcase_38 AC 755 ms
403,968 KB
testcase_39 AC 118 ms
403,152 KB
testcase_40 AC 117 ms
403,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio;
import std.array;
import std.string;
import std.conv;
import std.algorithm;
import std.typecons;
import std.range;
import std.random;
import std.math;
import std.container;

void main() {
  auto N = readln.chomp.to!int;

  alias Tuple!(int, "x", int, "y") point;
  point[] check;
  foreach (x; iota(-20, 21))
    foreach (y; iota(-20, 21))
      if (x*x+y*y < 400)
	check ~= point(x, y);

  auto mem = new bool[][](20001, 20001);
  int ans = 0;

  foreach (i; 0..N) {
    auto input = readln.split.map!(to!int);
    auto x = input[0];
    auto y = input[1];
    bool flag = true;
    foreach (p; check) {
      if (x+p.x < 0 || x+p.x >= 20001 || y+p.y < 0 || y+p.y >= 20001)
	continue;
      if (mem[x+p.x][y+p.y]) {
	flag = false;
	break;
      }
    }
    if (flag) {
      ans += 1;
      mem[x][y] = true;
    }
  }

  writeln(ans);
}
0