結果

問題 No.451 575
ユーザー YamyukiYamyuki
提出日時 2016-12-02 01:02:55
言語 C90
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 638 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 21,120 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-05-09 17:54:06
合計ジャッジ時間 4,388 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 0 ms
10,624 KB
testcase_01 AC 0 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 103 ms
5,376 KB
testcase_06 TLE -
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:36:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   36 |         scanf("%ld",&n);
      |         ^~~~~~~~~~~~~~~
main.c:38:17: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   38 |                 scanf("%lld",&a[i]);
      |                 ^~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#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;
	if(c==0){
		for(i=1;i<a[0];i++){
			b[0]=i;
			f=set(1);
			if(f) return 1;
		}
		return 0;
	}
	if(c%2==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;
	}
	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;
}
0