結果

問題 No.202 1円玉投げ
ユーザー tailstails
提出日時 2015-04-19 22:30:32
言語 C++11
(gcc 11.4.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 433 bytes
コンパイル時間 1,761 ms
コンパイル使用メモリ 158,220 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-12-22 05:59:03
合計ジャッジ時間 73,552 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 22 ms
5,248 KB
testcase_06 AC 2,952 ms
5,248 KB
testcase_07 AC 3,692 ms
5,248 KB
testcase_08 AC 3,784 ms
5,248 KB
testcase_09 AC 1,272 ms
5,248 KB
testcase_10 AC 240 ms
5,248 KB
testcase_11 AC 867 ms
5,248 KB
testcase_12 AC 933 ms
5,248 KB
testcase_13 AC 295 ms
5,248 KB
testcase_14 AC 31 ms
5,248 KB
testcase_15 AC 1,185 ms
5,248 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 1,045 ms
5,248 KB
testcase_20 AC 2,436 ms
5,248 KB
testcase_21 AC 1,027 ms
5,248 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 AC 3 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 3 ms
5,248 KB
testcase_28 AC 2 ms
5,248 KB
testcase_29 AC 2 ms
5,248 KB
testcase_30 AC 3 ms
5,248 KB
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 3 ms
5,248 KB
testcase_33 AC 2 ms
5,248 KB
testcase_34 AC 3 ms
5,248 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 AC 4,223 ms
5,248 KB
testcase_38 TLE -
testcase_39 AC 2 ms
5,248 KB
testcase_40 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// intended to be TLE

#include <bits/stdc++.h>

int gy[100000];
int gx[100000];

int sq(int x){
  return x*x;
}

int main() {
  int count=0;
  int n;
  std::cin >> n;
  for(int i=0;i<n;++i){
    int x,y;
    std::cin >> x >> y;
    for(int j=0;j<count;++j){
      if(sq(gx[j]-x)+sq(gy[j]-y)<400){
	goto hoge;
      }
    }
    gy[count]=y;
    gx[count]=x;
    ++count;
  hoge:;
  }
  std::cout << count << std::endl;
  return 0;
}
0