結果

問題 No.505 カードの数式2
コンテスト
ユーザー r-yanyo
提出日時 2017-04-21 22:59:35
言語 C++11
(gcc 15.2.0 + boost 1.89.0)
コンパイル:
g++-15 -O2 -lm -std=gnu++11 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
WA  
実行時間 -
コード長 515 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 905 ms
コンパイル使用メモリ 175,412 KB
実行使用メモリ 183,348 KB
最終ジャッジ日時 2026-04-02 21:32:48
合計ジャッジ時間 1,633 ms
ジャッジサーバーID
(参考情報)
judge3_0 / judge1_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 16 WA * 13
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include <bits/stdc++.h>
using namespace std;

using ll=long long;
#define int ll

#define FOR(i,a,b) for(int i=int(a);i<int(b);i++)
#define REP(i,b) FOR(i,0,b)

int read(){
	int i;
	scanf("%lld",&i);
	return i;
}

signed main(){
	// your code goes here
	int N = read();
	int a[N];
	a[0] = read();
	FOR(i,1,N){
		a[i] = read();
		int a1 = a[i-1] + a[i];
		int a2 = a[i-1] - a[i];
		int a3 = a[i-1] * a[i];
		int a4=-100000000;
		if(a[i]!=0) int a4 = a[i-1] / a[i];
		a[i]=max({a1,a2,a3,a4});
 	}
 	cout << a[N-1];
}
0