結果
問題 | No.321 (P,Q)-サンタと街の子供たち |
ユーザー | 夕叢霧香(ゆうむらきりか) |
提出日時 | 2018-03-12 17:48:33 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 84 ms / 2,000 ms |
コード長 | 1,090 bytes |
コンパイル時間 | 804 ms |
コンパイル使用メモリ | 71,296 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-08 02:51:45 |
合計ジャッジ時間 | 3,696 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
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 | AC | 2 ms
5,248 KB |
testcase_12 | AC | 2 ms
5,248 KB |
testcase_13 | AC | 3 ms
5,248 KB |
testcase_14 | AC | 40 ms
5,248 KB |
testcase_15 | AC | 84 ms
5,248 KB |
testcase_16 | AC | 34 ms
5,248 KB |
testcase_17 | AC | 2 ms
5,248 KB |
testcase_18 | AC | 41 ms
5,248 KB |
testcase_19 | AC | 54 ms
5,248 KB |
testcase_20 | AC | 82 ms
5,248 KB |
testcase_21 | AC | 48 ms
5,248 KB |
testcase_22 | AC | 16 ms
5,248 KB |
testcase_23 | AC | 69 ms
5,248 KB |
testcase_24 | AC | 19 ms
5,248 KB |
testcase_25 | AC | 48 ms
5,248 KB |
testcase_26 | AC | 79 ms
5,248 KB |
testcase_27 | AC | 60 ms
5,248 KB |
testcase_28 | AC | 58 ms
5,248 KB |
testcase_29 | AC | 83 ms
5,248 KB |
testcase_30 | AC | 4 ms
5,248 KB |
testcase_31 | AC | 3 ms
5,248 KB |
testcase_32 | AC | 43 ms
5,248 KB |
testcase_33 | AC | 41 ms
5,248 KB |
testcase_34 | AC | 31 ms
5,248 KB |
testcase_35 | AC | 64 ms
5,248 KB |
testcase_36 | AC | 5 ms
5,248 KB |
testcase_37 | AC | 52 ms
5,248 KB |
testcase_38 | AC | 42 ms
5,248 KB |
testcase_39 | AC | 14 ms
5,248 KB |
testcase_40 | AC | 78 ms
5,248 KB |
testcase_41 | AC | 22 ms
5,248 KB |
testcase_42 | AC | 69 ms
5,248 KB |
testcase_43 | AC | 34 ms
5,248 KB |
testcase_44 | AC | 61 ms
5,248 KB |
ソースコード
#include<iostream> using namespace std; typedef long long lint; typedef pair<lint,lint>pll; #define rep(i,n)for(int i=0;i<(int)(n);++i) lint quo_nearest(lint a,lint b){ lint q=a/b; lint r=a-q*b; if(abs(r)>abs(r-b))return q+1; if(abs(r)>abs(r+b))return q-1; return q; } pll rem_gaussian(pll a,pll b){ lint bnorm=b.first*b.first+b.second*b.second; lint x=a.first*b.first+a.second*b.second; lint y=-a.first*b.second+a.second*b.first; lint qx=quo_nearest(x,bnorm); lint qy=quo_nearest(y,bnorm); return pll(a.first-qx*b.first+qy*b.second,a.second-qx*b.second-qy*b.first); } pll gcd_gaussian(pll a,pll b){ while(b!=pll(0,0)){ pll c=rem_gaussian(a,b); cerr<<"a="<<a.first<<" "<<a.second<<endl; cerr<<"b="<<b.first<<" "<<b.second<<endl; cerr<<"c="<<c.first<<" "<<c.second<<endl; a=b;b=c; } return a; } int main(){ lint p,q; int n; cin>>p>>q>>n; pll g=gcd_gaussian(pll(p,q),pll(p,-q)); int ans=0; rep(_,n){ lint x,y; cin>>x>>y; ans+=g==pll(0,0)?(x==0&&y==0):rem_gaussian(pll(x,y),g)==pll(0,0)?1:0; } cout<<ans<<endl; }