結果
問題 | No.178 美しいWhitespace (1) |
ユーザー | takubokudori |
提出日時 | 2017-09-01 16:27:39 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 988 bytes |
コンパイル時間 | 717 ms |
コンパイル使用メモリ | 90,304 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-06 17:23:08 |
合計ジャッジ時間 | 1,561 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 1 ms
6,816 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
6,816 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 2 ms
6,820 KB |
testcase_12 | AC | 3 ms
6,820 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 2 ms
6,820 KB |
testcase_19 | WA | - |
testcase_20 | AC | 2 ms
6,816 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 2 ms
6,820 KB |
testcase_24 | AC | 2 ms
6,820 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:49:26: warning: ‘*k[0]’ may be used uninitialized [-Wmaybe-uninitialized] 49 | re(i,n) s+=(d-k[i])/2; | ~~~^
ソースコード
#include <algorithm> #include <cmath> #include <cstdio> #include <cstdlib> #include <functional> #include <iostream> #include <iterator> #include <list> #include <map> #include <queue> #include <set> #include <sstream> #include <stack> #include <string> #include <utility> #include <valarray> #include <vector> #include <limits> #define N 1000 #define MOD 1000000007 #define pe(str) return cout<<(str)<<endl,0 #define px(str) {cout<<str<<endl;exit(0);} #define re(i,n) for(int i=0;i<(n);i++) #define rep(i,a,b) for(int i=(a);i<(b);i++) #define fe(i,n,f) for_each(i,n,f) #define bw(a,b,c) (((a)<=(b))&&((b)<=(c))) using namespace std; typedef long long ll; typedef unsigned long long ull; typedef long double ld; typedef pair<int,int> pii; int main(void){ int a,b; int n; int g[2]={0,0}; cin>>n; int k[n]; re(i,n){ cin>>a>>b; k[i]=a+4*b; g[k[i]%2]++; } if(g[0]>0&&g[1]>0)pe(-1); int d=*max_element(k,k+n); int s=0; re(i,n) s+=(d-k[i])/2; cout<<s<<endl; return 0; }