結果
問題 |
No.321 (P,Q)-サンタと街の子供たち
|
ユーザー |
|
提出日時 | 2020-08-10 20:54:15 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 451 bytes |
コンパイル時間 | 1,925 ms |
コンパイル使用メモリ | 191,540 KB |
最終ジャッジ日時 | 2025-01-12 19:50:56 |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 39 RE * 2 |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:8:25: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 8 | int p,q,n; scanf("%d%d%d",&p,&q,&n); | ~~~~~^~~~~~~~~~~~~~~~~~~ main.cpp:15:31: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 15 | int x,y; scanf("%d%d",&x,&y); | ~~~~~^~~~~~~~~~~~~~
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(int i=0;i<(n);i++) using namespace std; int main(){ int p,q,n; scanf("%d%d%d",&p,&q,&n); int g=gcd(p,q); int p2=p/g,q2=q/g; int ans=0; rep(_,n){ int x,y; scanf("%d%d",&x,&y); x=abs(x); y=abs(y); if(p==0 && q==0){ if(x==0 && y==0) ans++; continue; } if(x%g!=0 || y%g!=0) continue; x/=g; y/=g; if((p2+q2)%2==1 || (x+y)%2==0) ans++; } printf("%d\n",ans); return 0; }