結果

問題 No.505 カードの数式2
ユーザー myantamyanta
提出日時 2017-04-21 23:02:44
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 765 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 24,960 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-20 06:36:31
合計ジャッジ時間 1,129 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 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 0 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 WA -
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 0 ms
5,376 KB
testcase_15 AC 0 ms
5,376 KB
testcase_16 AC 0 ms
5,376 KB
testcase_17 WA -
testcase_18 AC 0 ms
5,376 KB
testcase_19 AC 0 ms
5,376 KB
testcase_20 AC 0 ms
5,376 KB
testcase_21 AC 0 ms
5,376 KB
testcase_22 AC 0 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 1 ms
5,376 KB
testcase_25 AC 1 ms
5,376 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 1 ms
5,376 KB
testcase_28 AC 0 ms
5,376 KB
testcase_29 WA -
testcase_30 AC 0 ms
5,376 KB
testcase_31 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:30:30: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   30 |                         scanf("%d", &a[i]);
      |                         ~~~~~^~~~~~~~~~~~~

ソースコード

diff #

#include<cstdio>
#include<cstdlib>


typedef long long ll;


void max_u(ll& d, ll v)
{
	if(d<v) d=v;
}


void min_u(ll& d, ll v)
{
	if(d>v) d=v;
}


int main(void)
{
	int n, a[16];
	int i, j;
	ll result_p, result_n, t_p[4], t_n[4];

	while(scanf("%d", &n)==1)
	{
		for(i=0;i<n;i++)
		{
			scanf("%d", &a[i]);
		}
		result_p=result_n=a[0];
		for(i=1;i<n;i++)
		{
			for(j=0;j<4;j++)
			{
				t_p[j]=result_p;
				t_n[j]=result_n;
			}

			t_p[0]+=a[i];
			t_p[1]-=a[i];
			t_p[2]*=a[i];

			t_n[0]+=a[i];
			t_n[1]-=a[i];
			t_n[2]*=a[i];

			result_p=result_n=t_p[0];
			for(j=0;j<3;j++)
			{
				max_u(result_p, t_p[j]);
				max_u(result_p, t_n[j]);
				min_u(result_n, t_p[j]);
				min_u(result_n, t_n[j]);
			}
		}
		printf("%lld\n", result_p);
	}

	return 0;
}
0