結果
問題 | No.321 (P,Q)-サンタと街の子供たち |
ユーザー | 🍡yurahuna |
提出日時 | 2016-05-21 10:52:36 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,306 bytes |
コンパイル時間 | 1,632 ms |
コンパイル使用メモリ | 168,152 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-06 16:36:16 |
合計ジャッジ時間 | 3,652 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | WA | - |
testcase_12 | AC | 2 ms
5,248 KB |
testcase_13 | AC | 2 ms
5,248 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 11 ms
5,248 KB |
testcase_17 | AC | 2 ms
5,248 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 25 ms
5,248 KB |
testcase_21 | WA | - |
testcase_22 | AC | 6 ms
5,248 KB |
testcase_23 | AC | 23 ms
5,248 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 19 ms
5,248 KB |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | AC | 15 ms
5,248 KB |
testcase_33 | WA | - |
testcase_34 | AC | 12 ms
5,248 KB |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | AC | 17 ms
5,248 KB |
testcase_38 | AC | 14 ms
5,248 KB |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | AC | 20 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define int long long // <-----!!!!!!!!!!!!!!!!!!! #define rep(i,n) for (int i=0;i<(n);i++) #define rep2(i,a,b) for (int i=(a);i<(b);i++) #define rrep(i,n) for (int i=(n)-1;i>=0;i--) #define rrep2(i,a,b) for (int i=(b)-1;i>=(a);i--) #define all(a) (a).begin(),(a).end() typedef long long ll; typedef pair<int, int> P; int gcd(int a, int b) { if (b == 0) return a; return gcd(b, a % b); } signed main() { std::ios::sync_with_stdio(false); std::cin.tie(0); int p, q; cin >> p >> q; int r = gcd(p, q); if (r > 0) { p /= r; q /= r; } int n; cin >> n; int ans = 0; rep(i, n) { int x, y; cin >> x >> y; x = abs(x); y = abs(y); if (p == 0 && q == 0) { // p = q = 0なら原点しか行けない if (x == 0 && y == 0) { ans++; } } else { if (x % r != 0 || y % r != 0) { continue; } x /= r; y /= r; if (p % 2 != 0 && q % 2 == 0) { if ((x + y) % 2 == 0) { ans++; } } else { ans++; } } } cout << ans << endl; }