結果
問題 | No.451 575 |
ユーザー | くれちー |
提出日時 | 2016-12-02 00:45:45 |
言語 | C90 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 616 bytes |
コンパイル時間 | 166 ms |
コンパイル使用メモリ | 20,992 KB |
実行使用メモリ | 8,156 KB |
最終ジャッジ日時 | 2024-05-09 17:43:26 |
合計ジャッジ時間 | 5,730 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
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
6,944 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 1 ms
6,940 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 1 ms
6,940 KB |
testcase_32 | AC | 6 ms
6,944 KB |
コンパイルメッセージ
main.c: In function ‘main’: main.c:7:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 7 | scanf("%d", &n); | ^~~~~~~~~~~~~~~ main.c:14:17: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 14 | scanf("%lld", &b[i]); | ^~~~~~~~~~~~~~~~~~~~
ソースコード
#include <stdio.h> int main() { const long long max = 1000000000000000000; int n; scanf("%d", &n); static long long b[500000]; int flag = 0; int i; for (i = 0; i < n; i++) { scanf("%lld", &b[i]); if (i % 2 == 1 && b[i] == max) flag = 1; else if (i % 2 == 0 && b[i] == 1) flag = 1; } if (flag) { puts("-1"); return 0; } printf("%d\n", n + 1); static long long ans[500001]; ans[0] = 1000; for (i = 1; i < n + 1; i++) { if (i % 2 == 1) ans[i] = b[i - 1] - ans[i - 1]; else ans[i] = ans[i - 1] - b[i - 1]; } for (i = 0; i < n + 1; i++) { printf("%lld\n", ans[i]); } return 0; }