結果

問題 No.202 1円玉投げ
ユーザー h_nosonh_noson
提出日時 2016-06-17 09:51:54
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 763 ms / 5,000 ms
コード長 1,020 bytes
コンパイル時間 2,465 ms
コンパイル使用メモリ 71,176 KB
実行使用メモリ 9,216 KB
最終ジャッジ日時 2024-12-22 10:27:04
合計ジャッジ時間 11,449 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 426 ms
9,216 KB
testcase_01 AC 669 ms
9,216 KB
testcase_02 AC 3 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 3 ms
5,248 KB
testcase_05 AC 20 ms
5,248 KB
testcase_06 AC 573 ms
7,936 KB
testcase_07 AC 683 ms
8,192 KB
testcase_08 AC 688 ms
8,192 KB
testcase_09 AC 298 ms
6,820 KB
testcase_10 AC 96 ms
6,816 KB
testcase_11 AC 228 ms
6,816 KB
testcase_12 AC 240 ms
6,816 KB
testcase_13 AC 107 ms
6,820 KB
testcase_14 AC 25 ms
6,820 KB
testcase_15 AC 290 ms
6,816 KB
testcase_16 AC 319 ms
9,216 KB
testcase_17 AC 549 ms
9,088 KB
testcase_18 AC 546 ms
9,088 KB
testcase_19 AC 258 ms
6,820 KB
testcase_20 AC 514 ms
7,680 KB
testcase_21 AC 261 ms
6,816 KB
testcase_22 AC 4 ms
6,820 KB
testcase_23 AC 4 ms
6,816 KB
testcase_24 AC 4 ms
6,816 KB
testcase_25 AC 4 ms
6,816 KB
testcase_26 AC 5 ms
6,820 KB
testcase_27 AC 5 ms
6,820 KB
testcase_28 AC 4 ms
6,816 KB
testcase_29 AC 4 ms
6,820 KB
testcase_30 AC 5 ms
6,816 KB
testcase_31 AC 5 ms
6,816 KB
testcase_32 AC 5 ms
6,816 KB
testcase_33 AC 6 ms
6,820 KB
testcase_34 AC 6 ms
6,816 KB
testcase_35 AC 472 ms
9,088 KB
testcase_36 AC 365 ms
9,088 KB
testcase_37 AC 763 ms
8,576 KB
testcase_38 AC 479 ms
9,088 KB
testcase_39 AC 3 ms
6,820 KB
testcase_40 AC 3 ms
6,820 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:21:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   21 |     scanf("%d",&n);
      |     ~~~~~^~~~~~~~~
main.cpp:24:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   24 |         scanf("%d%d",&X,&Y);
      |         ~~~~~^~~~~~~~~~~~~~

ソースコード

diff #

#include <iostream>
#include <vector>
#include <map>
#include <algorithm>
#include <set>
using namespace std;

#define REP(i,s,e) for (i = s; i <= e; i++)
#define rep(i,n) REP (i,0,(int)(n)-1)
#define RREP(i,s,e) for (i = s; i >= e; i--)
#define rrep(i,n) RREP (i,(int)(n)-1,0)
#define INF (int)1e8
#define MOD (int)(1e9+7)

typedef long long ll;

set<int> coin[20001];

int main(void) {
    int i, n;
    scanf("%d",&n);
    rep (i,n) {
        int X, Y;
        scanf("%d%d",&X,&Y);
        int x;
        bool ok = true;
        REP (x,max(X-20,0),min(X+20,20000)) {
            for (int j = max(Y-20,0); j <= min(Y + 20,20000); j++) {
                auto py = coin[x].lower_bound(j);
                if (py != coin[x].end()) {
                    int y = *py;
                    ok &= (x - X) * (x - X) + (y - Y) * (y - Y) >= 400;
                }
            }
        }
        if (ok) coin[X].insert(Y);
    }
    int ans = 0;
    REP (i,0,20000) ans += coin[i].size();
    printf("%d\n",ans);
    return 0;
}
0