結果

問題 No.505 カードの数式2
ユーザー uafr_csuafr_cs
提出日時 2017-10-30 18:02:09
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,183 bytes
コンパイル時間 2,134 ms
コンパイル使用メモリ 77,708 KB
実行使用メモリ 41,660 KB
最終ジャッジ日時 2024-11-22 10:48:33
合計ジャッジ時間 7,510 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,392 KB
testcase_01 AC 133 ms
41,296 KB
testcase_02 AC 132 ms
41,256 KB
testcase_03 AC 132 ms
41,128 KB
testcase_04 AC 132 ms
40,968 KB
testcase_05 AC 133 ms
41,128 KB
testcase_06 AC 137 ms
41,176 KB
testcase_07 AC 141 ms
41,424 KB
testcase_08 AC 132 ms
41,288 KB
testcase_09 AC 133 ms
41,376 KB
testcase_10 AC 130 ms
41,432 KB
testcase_11 WA -
testcase_12 AC 134 ms
41,296 KB
testcase_13 AC 129 ms
41,272 KB
testcase_14 AC 128 ms
41,308 KB
testcase_15 AC 134 ms
41,276 KB
testcase_16 AC 137 ms
41,384 KB
testcase_17 WA -
testcase_18 AC 132 ms
41,112 KB
testcase_19 AC 135 ms
41,256 KB
testcase_20 AC 130 ms
41,104 KB
testcase_21 AC 134 ms
41,612 KB
testcase_22 AC 116 ms
40,128 KB
testcase_23 AC 132 ms
41,068 KB
testcase_24 AC 131 ms
41,660 KB
testcase_25 AC 131 ms
41,420 KB
testcase_26 AC 130 ms
41,528 KB
testcase_27 AC 134 ms
41,200 KB
testcase_28 AC 133 ms
41,560 KB
testcase_29 WA -
testcase_30 AC 135 ms
41,248 KB
testcase_31 AC 131 ms
41,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.LinkedList;
import java.util.Scanner;

public class Main {
	
	public static long MOD = 1000000007;
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final int N = sc.nextInt();
		long[] as = new long[N];
		for(int i = 0; i < N; i++){ as[i] = sc.nextLong(); }
		
		long min = as[0], max = as[0];
		for(int i = 1; i < N; i++){
			long curr_min = min + as[i];
			long curr_max = max + as[i];
			
			// +
			{
				curr_min = Math.min(curr_min, min + as[i]);
				curr_min = Math.min(curr_min, max + as[i]);
				curr_max = Math.max(curr_max, min + as[i]);
				curr_max = Math.max(curr_max, max + as[i]);
			}
			// -
			{
				curr_min = Math.min(curr_min, min - as[i]);
				curr_min = Math.min(curr_min, max - as[i]);
				curr_max = Math.max(curr_max, min - as[i]);
				curr_max = Math.max(curr_max, max - as[i]);
			}
			// *
			{
				curr_min = Math.min(curr_min, min * as[i]);
				curr_min = Math.min(curr_min, max * as[i]);
				curr_max = Math.max(curr_max, min * as[i]);
				curr_max = Math.max(curr_max, max * as[i]);
			}
			
			min = curr_min;
			max = curr_max;
		}
		
		System.out.println(max);
	}
}
0