結果

問題 No.505 カードの数式2
ユーザー tentententen
提出日時 2020-09-11 08:34:48
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 883 bytes
コンパイル時間 2,011 ms
コンパイル使用メモリ 75,048 KB
実行使用メモリ 56,020 KB
最終ジャッジ日時 2024-06-07 02:07:42
合計ジャッジ時間 6,832 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
41,060 KB
testcase_01 AC 120 ms
41,036 KB
testcase_02 AC 120 ms
41,008 KB
testcase_03 AC 116 ms
41,128 KB
testcase_04 AC 115 ms
41,272 KB
testcase_05 AC 122 ms
41,484 KB
testcase_06 AC 121 ms
41,316 KB
testcase_07 AC 115 ms
41,000 KB
testcase_08 AC 120 ms
41,368 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 124 ms
41,076 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 123 ms
41,132 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 121 ms
40,856 KB
testcase_20 AC 111 ms
39,688 KB
testcase_21 AC 125 ms
41,400 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 121 ms
41,120 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int n = sc.nextInt();
    	long max = 0;
    	long min = 0;
    	for (int i = 0; i < n; i++) {
    	    long x = sc.nextInt();
    	    long nextMax = max + x;
    	    nextMax = Math.max(nextMax, max - x);
    	    nextMax = Math.max(nextMax, max * x);
    	    nextMax = Math.max(nextMax, min + x);
    	    nextMax = Math.max(nextMax, min - x);
    	    nextMax = Math.max(nextMax, min * x);
    	    long nextMin = max + x;
    	    nextMin = Math.min(nextMin, max - x);
    	    nextMin = Math.min(nextMin, max * x);
    	    nextMin = Math.min(nextMin, min + x);
    	    nextMin = Math.min(nextMin, min - x);
    	    nextMin = Math.min(nextMin, min * x);
    	    max = nextMax;
    	    min = nextMin;
    	}
    	System.out.println(max);
	}
}
0