結果

問題 No.202 1円玉投げ
ユーザー 🍮かんプリン🍮かんプリン
提出日時 2020-05-22 23:28:32
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 829 ms / 5,000 ms
コード長 875 bytes
コンパイル時間 1,694 ms
コンパイル使用メモリ 167,028 KB
実行使用メモリ 53,248 KB
最終ジャッジ日時 2024-12-22 11:58:05
合計ジャッジ時間 15,797 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 480 ms
52,992 KB
testcase_01 AC 829 ms
52,992 KB
testcase_02 AC 42 ms
52,992 KB
testcase_03 AC 44 ms
52,992 KB
testcase_04 AC 43 ms
52,992 KB
testcase_05 AC 97 ms
53,120 KB
testcase_06 AC 701 ms
52,992 KB
testcase_07 AC 772 ms
53,120 KB
testcase_08 AC 768 ms
53,120 KB
testcase_09 AC 467 ms
52,992 KB
testcase_10 AC 236 ms
52,992 KB
testcase_11 AC 397 ms
52,992 KB
testcase_12 AC 405 ms
53,248 KB
testcase_13 AC 251 ms
53,120 KB
testcase_14 AC 101 ms
52,992 KB
testcase_15 AC 456 ms
53,120 KB
testcase_16 AC 402 ms
52,992 KB
testcase_17 AC 441 ms
53,120 KB
testcase_18 AC 434 ms
53,120 KB
testcase_19 AC 414 ms
52,992 KB
testcase_20 AC 639 ms
52,992 KB
testcase_21 AC 427 ms
52,992 KB
testcase_22 AC 49 ms
52,992 KB
testcase_23 AC 49 ms
52,992 KB
testcase_24 AC 45 ms
52,992 KB
testcase_25 AC 44 ms
52,992 KB
testcase_26 AC 46 ms
53,120 KB
testcase_27 AC 46 ms
53,120 KB
testcase_28 AC 43 ms
53,120 KB
testcase_29 AC 46 ms
53,120 KB
testcase_30 AC 50 ms
52,992 KB
testcase_31 AC 46 ms
53,120 KB
testcase_32 AC 54 ms
53,120 KB
testcase_33 AC 45 ms
53,120 KB
testcase_34 AC 47 ms
52,992 KB
testcase_35 AC 415 ms
53,248 KB
testcase_36 AC 702 ms
53,120 KB
testcase_37 AC 828 ms
52,992 KB
testcase_38 AC 431 ms
53,248 KB
testcase_39 AC 45 ms
53,120 KB
testcase_40 AC 45 ms
52,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/**
 *   @FileName	a.cpp
 *   @Author	kanpurin
 *   @Created	2020.05.22 23:28:25
**/

#include "bits/stdc++.h" 
using namespace std; 
typedef long long ll;

int main() {
    int n;cin >> n;
    vector<vector<bool>> g(20001,vector<bool>(20001,false));
    int ans = 0;
    vector<int> dx,dy;
    for (int i = -20; i <= 20; i++) {
        for (int j = -20; j <= 20; j++) {
            if (i * i + j * j < 400) {
                dx.push_back(i);
                dy.push_back(j);
            }
        }
    }
    for (int i = 0; i < n; i++) {
        int a,b;cin >> a >> b;
        if (g[a][b]) continue;
        for (int k = 0; k < dx.size(); k++) {
            int x = a + dx[k], y = b + dy[k];
            if (x >= 0 && x <= 20000 && y >= 0 && y <= 20000) {
                g[x][y] = true;
            }
        }
        ans++;
    }
    cout << ans << endl;
    return 0;
}
0