結果

問題 No.505 カードの数式2
ユーザー yagi2yagi2
提出日時 2017-04-27 17:09:53
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,302 bytes
コンパイル時間 2,385 ms
コンパイル使用メモリ 79,680 KB
実行使用メモリ 54,352 KB
最終ジャッジ日時 2024-09-13 14:49:48
合計ジャッジ時間 7,515 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
54,076 KB
testcase_01 AC 128 ms
54,128 KB
testcase_02 AC 130 ms
53,832 KB
testcase_03 AC 125 ms
54,148 KB
testcase_04 AC 126 ms
53,956 KB
testcase_05 AC 123 ms
54,224 KB
testcase_06 AC 123 ms
53,876 KB
testcase_07 AC 125 ms
54,100 KB
testcase_08 AC 126 ms
53,840 KB
testcase_09 AC 125 ms
54,220 KB
testcase_10 AC 125 ms
53,892 KB
testcase_11 AC 127 ms
53,908 KB
testcase_12 AC 127 ms
54,124 KB
testcase_13 WA -
testcase_14 AC 127 ms
53,904 KB
testcase_15 WA -
testcase_16 AC 128 ms
53,888 KB
testcase_17 AC 128 ms
53,980 KB
testcase_18 AC 128 ms
53,768 KB
testcase_19 WA -
testcase_20 AC 129 ms
53,880 KB
testcase_21 AC 128 ms
54,072 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 126 ms
53,832 KB
testcase_30 AC 126 ms
54,068 KB
testcase_31 AC 128 ms
54,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder.No505;

import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int N = Integer.parseInt(sc.next());
        List<Integer> nums = new ArrayList<>();

        for (int i = 0; i < N; i++) {
            nums.add(Integer.parseInt(sc.next()));
        }

        long max = nums.get(0);
        long min = nums.get(0);
        for (int i = 1; i < N; i++) {
            long tmax = Long.MIN_VALUE;
            long tmin = Long.MAX_VALUE;

            tmax = Math.max(tmax, max + nums.get(i));
            tmin = Math.min(tmin, min + nums.get(i));

            tmax = Math.max(tmax, max - nums.get(i));
            tmin = Math.min(tmin, min - nums.get(i));

            tmax = Math.max(tmax, max * nums.get(i));
            tmin = Math.min(tmin, min * nums.get(i));

            if (nums.get(i) != 0) {
                tmax = Math.max(tmax, max / nums.get(i));
                tmax = Math.max(tmax, min / nums.get(i));

                tmin = Math.min(tmin, max / nums.get(i));
                tmin = Math.min(tmin, min / nums.get(i));
            }

            min = tmin;
            max = tmax;
        }
        System.out.println(max);
    }
}
0