結果

問題 No.505 カードの数式2
ユーザー uafr_csuafr_cs
提出日時 2017-10-30 18:03:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 1,407 bytes
コンパイル時間 2,245 ms
コンパイル使用メモリ 77,536 KB
実行使用メモリ 54,464 KB
最終ジャッジ日時 2024-11-14 07:30:08
合計ジャッジ時間 7,324 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,252 KB
testcase_01 AC 130 ms
54,016 KB
testcase_02 AC 131 ms
54,264 KB
testcase_03 AC 129 ms
54,168 KB
testcase_04 AC 128 ms
54,208 KB
testcase_05 AC 126 ms
54,108 KB
testcase_06 AC 127 ms
54,224 KB
testcase_07 AC 125 ms
54,044 KB
testcase_08 AC 129 ms
54,108 KB
testcase_09 AC 128 ms
54,044 KB
testcase_10 AC 129 ms
54,088 KB
testcase_11 AC 128 ms
54,188 KB
testcase_12 AC 127 ms
53,980 KB
testcase_13 AC 127 ms
54,180 KB
testcase_14 AC 127 ms
54,464 KB
testcase_15 AC 126 ms
54,080 KB
testcase_16 AC 125 ms
54,264 KB
testcase_17 AC 126 ms
54,104 KB
testcase_18 AC 114 ms
52,732 KB
testcase_19 AC 129 ms
53,760 KB
testcase_20 AC 128 ms
54,020 KB
testcase_21 AC 128 ms
53,864 KB
testcase_22 AC 135 ms
53,932 KB
testcase_23 AC 136 ms
54,232 KB
testcase_24 AC 117 ms
54,272 KB
testcase_25 AC 131 ms
54,200 KB
testcase_26 AC 129 ms
54,240 KB
testcase_27 AC 129 ms
54,004 KB
testcase_28 AC 130 ms
54,112 KB
testcase_29 AC 133 ms
54,032 KB
testcase_30 AC 132 ms
54,152 KB
testcase_31 AC 132 ms
54,132 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]);
			}
			// *
			if(as[i] != 0){
				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