結果
問題 | No.451 575 |
ユーザー | FF256grhy |
提出日時 | 2016-12-02 00:48:08 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,936 bytes |
コンパイル時間 | 184 ms |
コンパイル使用メモリ | 29,824 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-09 17:46:55 |
合計ジャッジ時間 | 5,465 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 0 ms
5,248 KB |
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 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 30 ms
5,376 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 1 ms
5,376 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 0 ms
5,376 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 1 ms
5,376 KB |
testcase_32 | WA | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:35:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 35 | scanf("%d", &n); | ~~~~~^~~~~~~~~~ main.cpp:36:26: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 36 | inc(i, n) { scanf("%lld", &b[i]); } | ~~~~~^~~~~~~~~~~~~~~
ソースコード
#include <cstdio> #include <cmath> typedef long long signed int LL; typedef long long unsigned int LU; #define incID(i, l, r) for(int i = (l) ; i < (r); i++) #define incII(i, l, r) for(int i = (l) ; i <= (r); i++) #define decID(i, l, r) for(int i = (r) - 1; i >= (l); i--) #define decII(i, l, r) for(int i = (r) ; i >= (l); i--) #define inc( i, n) incID(i, 0, n) #define inc1(i, n) incII(i, 1, n) #define dec( i, n) decID(i, 0, n) #define dec1(i, n) decII(i, 1, n) #define inII(v, l, r) ((l) <= (v) && (v) <= (r)) #define inID(v, l, r) ((l) <= (v) && (v) < (r)) template<typename T> void swap(T & x, T & y) { T t = x; x = y; y = t; return; } template<typename T> T abs(T x) { return (0 <= x ? x : -x); } template<typename T> T max(T a, T b) { return (b <= a ? a : b); } template<typename T> T min(T a, T b) { return (a <= b ? a : b); } template<typename T> bool setmin(T & a, T b) { if(a <= b) { return false; } else { a = b; return true; } } template<typename T> bool setmax(T & a, T b) { if(b <= a) { return false; } else { a = b; return true; } } template<typename T> T gcd(T a, T b) { return (b == 0 ? a : gcd(b, a % b)); } template<typename T> T lcm(T a, T b) { return a / gcd(a, b) * b; } // ---- ---- int n; LL b[100000]; const LL MAX = 1000000000000000000LL; int main() { scanf("%d", &n); inc(i, n) { scanf("%lld", &b[i]); } bool flag2 = false; LL l = 1, r = b[0]; while(r - l > 1) { LL m = (l + r) / 2; bool flag = true; int ii; inc(i, n) { m = (b[i] - m) * (i % 2 == 0 ? 1 : -1); if(! inII(m, 1, MAX)) { flag = true; ii = i; break; } } if(! flag) { if(m < 1) { if(ii % 4 < 2) { r = m; } else { l = m; } } else { if(ii % 4 < 2) { l = m; } else { r = m; } } } else { flag2 = true; break; } } if(! flag2) { printf("-1\n"); return 0; } printf("%d\n", n + 1); inc(i, n + 1) { printf("%lld\n", l); l = (b[i] - l) * (i % 2 == 0 ? 1 : -1); } return 0; }