結果

問題 No.1792 科学の甲子園
ユーザー tentententen
提出日時 2023-03-27 15:43:48
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 2,608 bytes
コンパイル時間 2,763 ms
コンパイル使用メモリ 90,076 KB
実行使用メモリ 62,960 KB
最終ジャッジ日時 2023-10-19 15:14:55
合計ジャッジ時間 9,728 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
57,896 KB
testcase_01 AC 54 ms
53,536 KB
testcase_02 AC 52 ms
53,544 KB
testcase_03 AC 54 ms
53,540 KB
testcase_04 AC 53 ms
53,544 KB
testcase_05 AC 52 ms
53,540 KB
testcase_06 AC 51 ms
53,540 KB
testcase_07 AC 52 ms
53,544 KB
testcase_08 AC 69 ms
54,108 KB
testcase_09 AC 114 ms
58,064 KB
testcase_10 AC 54 ms
53,544 KB
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int[][] values = new int[n][6];
        for (int i = 0; i < n; i++) {
            for (int j = 0; j < 6; j++) {
                values[i][j] = sc.nextInt();
            }
        }
        long ans = 0;
        for (int i = 0; i < n - 3; i++) {
            int[] currenti = values[i];
            for (int j = i + 1; j < n - 2; j++) {
                int[] currentj = new int[6];
                for (int a = 0; a < 6; a++) {
                    currentj[a] = Math.max(currenti[a], values[j][a]);
                }
                for (int k = j + 1; k < n - 1; k++) {
                    int[] currentk = new int[6];
                    for (int a = 0; a < 6; a++) {
                        currentk[a] = Math.max(currentj[a], values[k][a]);
                    }
                    for (int l = k + 1; l < n; l++) {
                        long tmp = 1;
                        for (int a = 0; a < 6; a++) {
                            tmp *= Math.max(currentk[a], values[l][a]);
                        }
                        ans = Math.max(ans, tmp);
                    }
                }
            }
        }
        System.out.println(ans);
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0