結果
問題 | No.451 575 |
ユーザー | Yamyuki |
提出日時 | 2016-12-02 01:00:20 |
言語 | C90 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 759 bytes |
コンパイル時間 | 251 ms |
コンパイル使用メモリ | 21,376 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-05-09 17:52:09 |
合計ジャッジ時間 | 4,273 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 0 ms
10,624 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | TLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
コンパイルメッセージ
main.c: In function ‘main’: main.c:44:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 44 | scanf("%ld",&n); | ^~~~~~~~~~~~~~~ main.c:46:17: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 46 | scanf("%lld",&a[i]); | ^~~~~~~~~~~~~~~~~~~
ソースコード
#include<stdio.h> long long a[100000],b[100001]; long n; int set(long c){ int f; long long i; if(c==n+1) return 1; switch(c%2){ case 1: if(a[c-1]-b[c-1]>0){ b[c]=a[c-1]-b[c-1]; f=set(c+1); if(f) return 1; } return 0; case 0: if(c==0){ if(n==1){ for(b[0]=1;i<a[0];b[0]++){ f=set(1); if(f) return 1; } }else{ for(b[0]=a[1]+1;i<a[0];b[0]++){ f=set(1); if(f) return 1; } } return 0; } if(b[c-1]-a[c-1]>0){ b[c]=b[c-1]-a[c-1]; f=set(c+1); if(f) return 1; } return 0; } } int main(){ long i; scanf("%ld",&n); for(i=0;i<n;i++){ scanf("%lld",&a[i]); } if(set(0)){ printf("%ld\n",n+1); for(i=0;i<n+1;i++){ printf("%lld\n",b[i]); } return 0; } printf("-1\n"); return 0; }