結果
問題 | No.24 数当てゲーム |
ユーザー | HAHAHA |
提出日時 | 2014-11-02 23:26:58 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,027 bytes |
コンパイル時間 | 1,848 ms |
コンパイル使用メモリ | 64,380 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-09 18:49:56 |
合計ジャッジ時間 | 1,630 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | WA | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:54:23: warning: iteration 9 invokes undefined behavior [-Waggressive-loop-optimizations] 54 | if(A[i]&&B[i]) | ~~~^ main.cpp:14:31: note: within this loop 14 | #define rev(j,m) for(int j=1;j<=m;j++) | ^ main.cpp:53:17: note: in expansion of macro ‘rev’ 53 | rev(i,10){ | ^~~
ソースコード
#include<iostream> #include<cstdio> #include <stdlib.h> #include<string> #include<vector> #include <queue> #include <bitset> #include<algorithm> using namespace std; #define ALL(x) (x).begin(),(x).end() #define RALL(x) (x).rbegin(), (x).rend() #define rep(i,n) for(int i=0;i<n;i++) #define rev(j,m) for(int j=1;j<=m;j++) typedef vector<pair<int,int> > pii; int main(){ int n,M,x=0,y=0,A[10]={0},B[10]={0},C[10]={0}; string s; cin >> n; rep(i,n){ int a,b,c,d; cin >> a >> b >> c >> d >> s; if(s=="NO"){ x=1; A[a]++,A[b]++,A[c]++,A[d]++; } else{ y=1; B[a]++,B[b]++,B[c]++,B[d]++; } } if(y==0){ rev(i,10){ if(A[i]==0){ cout << i << endl; return 0; } } } else if(x==0){ M=*max_element(B,B+10); rev(i,10){ if(M==B[i]){ cout << i << endl; return 0; } } } else{ rev(i,10){ if(A[i]&&B[i]) B[i]=0; } rev(i,10){ if(B[i]){ cout << i << endl; return 0; } } } return 0; }