結果

問題 No.505 カードの数式2
ユーザー tentententen
提出日時 2021-11-02 10:58:59
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,777 bytes
コンパイル時間 2,168 ms
コンパイル使用メモリ 77,472 KB
実行使用メモリ 52,096 KB
最終ジャッジ日時 2024-10-11 09:15:29
合計ジャッジ時間 5,091 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
49,664 KB
testcase_01 AC 54 ms
52,084 KB
testcase_02 AC 54 ms
50,176 KB
testcase_03 AC 53 ms
50,240 KB
testcase_04 AC 53 ms
50,088 KB
testcase_05 AC 53 ms
50,052 KB
testcase_06 AC 54 ms
50,172 KB
testcase_07 AC 54 ms
50,276 KB
testcase_08 AC 53 ms
49,920 KB
testcase_09 AC 54 ms
50,192 KB
testcase_10 AC 54 ms
49,936 KB
testcase_11 WA -
testcase_12 AC 53 ms
50,380 KB
testcase_13 AC 54 ms
50,060 KB
testcase_14 AC 54 ms
49,580 KB
testcase_15 AC 55 ms
50,028 KB
testcase_16 AC 54 ms
50,372 KB
testcase_17 WA -
testcase_18 AC 53 ms
50,172 KB
testcase_19 AC 53 ms
49,912 KB
testcase_20 AC 54 ms
50,020 KB
testcase_21 AC 55 ms
49,892 KB
testcase_22 AC 53 ms
50,200 KB
testcase_23 AC 54 ms
49,668 KB
testcase_24 AC 54 ms
50,104 KB
testcase_25 AC 53 ms
50,380 KB
testcase_26 AC 53 ms
50,200 KB
testcase_27 AC 54 ms
49,896 KB
testcase_28 AC 54 ms
49,884 KB
testcase_29 WA -
testcase_30 AC 53 ms
49,660 KB
testcase_31 AC 54 ms
50,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        long max = sc.nextInt();
        long min = max;
        for (int i = 1; i < n; i++) {
            long nextMax = Long.MIN_VALUE;
            long nextMin = Long.MAX_VALUE;
            int x = sc.nextInt();
            nextMax = Math.max(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);
            nextMin = Math.min(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);
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public String nextLine() throws Exception {
        return br.readLine();
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0