結果
問題 | No.199 星を描こう |
ユーザー | 184 |
提出日時 | 2015-04-29 00:54:08 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 963 bytes |
コンパイル時間 | 511 ms |
コンパイル使用メモリ | 53,688 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-05 16:05:35 |
合計ジャッジ時間 | 1,224 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | WA | - |
testcase_15 | AC | 1 ms
5,376 KB |
testcase_16 | AC | 1 ms
5,376 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 1 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | WA | - |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 2 ms
5,376 KB |
testcase_25 | AC | 1 ms
5,376 KB |
testcase_26 | WA | - |
testcase_27 | AC | 1 ms
5,376 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:23:63: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 23 | int x[6],y[6];vector<st> vs;for(int i=0;i<5;i++){scanf("%d%d",&x[i],&y[i]);vs.push_back(st(x[i],y[i]));} | ~~~~~^~~~~~~~~~~~~~~~~~~~
ソースコード
#include <cstdio> #include <cstdlib> #include <algorithm> #include <vector> #include <map> using namespace std; struct st{ int x,y; st(int x,int y):x(x),y(y){} }; int main(){ /* int b,n,c[11];scanf("%d%d",&b,&n); long long ans=0,sum=0,ave=0; for(int i=0;i<n;i++){ scanf("%d",&c[i]); sum+=c[i]; } sum+=b; ave*/ int x[6],y[6];vector<st> vs;for(int i=0;i<5;i++){scanf("%d%d",&x[i],&y[i]);vs.push_back(st(x[i],y[i]));} vector<st> v; sort(vs.begin(),vs.end(),[](st a,st b){if(a.x==b.x)return a.y<b.y;return a.x<b.x;}); v.push_back(vs[0]);v.push_back(vs[1]); vs.erase(vs.begin());vs.erase(vs.begin()+1); sort(vs.begin(),vs.end(),[](st a,st b){if(a.y==b.y)return a.x<b.x;return a.y<b.y;}); v.push_back(vs[0]);v.push_back(vs[1]);v.push_back(vs[2]); bool b=1; for(int i=0;i<5;i++){ int ax=0,ay=0,bx=v[(i+2)%5].x-v[i].x,by=v[(i+2)%5].y-v[i].y; if(ax*by-ay*bx<0); else{b=0;break;} } if(b)printf("YES\n"); else printf("NO\n"); return 0; }