結果

問題 No.851 テストケース
ユーザー tentententen
提出日時 2021-02-09 08:07:02
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 746 bytes
コンパイル時間 2,319 ms
コンパイル使用メモリ 75,516 KB
実行使用メモリ 54,008 KB
最終ジャッジ日時 2024-07-06 13:36:38
合計ジャッジ時間 4,848 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
41,040 KB
testcase_01 AC 97 ms
41,140 KB
testcase_02 AC 97 ms
41,084 KB
testcase_03 AC 97 ms
40,980 KB
testcase_04 AC 97 ms
41,152 KB
testcase_05 AC 89 ms
40,276 KB
testcase_06 AC 99 ms
40,860 KB
testcase_07 AC 89 ms
40,188 KB
testcase_08 AC 107 ms
40,876 KB
testcase_09 AC 86 ms
40,272 KB
testcase_10 AC 96 ms
40,828 KB
testcase_11 AC 96 ms
41,044 KB
testcase_12 AC 89 ms
40,380 KB
testcase_13 AC 95 ms
41,112 KB
testcase_14 AC 99 ms
40,744 KB
testcase_15 AC 100 ms
41,196 KB
testcase_16 AC 90 ms
40,108 KB
testcase_17 AC 97 ms
40,988 KB
testcase_18 AC 82 ms
39,376 KB
testcase_19 AC 97 ms
40,916 KB
testcase_20 AC 99 ms
40,976 KB
testcase_21 WA -
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        try {
            Integer.parseInt(sc.nextLine());
            int[] arr = new int[3];
            for (int i = 0; i < 3; i++) {
                arr[i] = Integer.parseInt(sc.nextLine());
            }
            TreeSet<Integer> sums = new TreeSet<>();
            for (int i = 0; i < 2; i++) {
                for (int j = i + 1; j < 3; j++) {
                    sums.add(arr[i] + arr[j]);
                }
            }
            sums.pollLast();
            System.out.println(sums.last());
            
        } catch (Exception e) {
            System.out.println("\"assert\"");
        }
    }
}
0