結果

問題 No.851 テストケース
ユーザー GrenacheGrenache
提出日時 2019-08-09 23:37:14
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,584 bytes
コンパイル時間 4,399 ms
コンパイル使用メモリ 79,676 KB
実行使用メモリ 41,748 KB
最終ジャッジ日時 2024-07-19 15:56:28
合計ジャッジ時間 7,671 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,420 KB
testcase_01 AC 130 ms
41,420 KB
testcase_02 WA -
testcase_03 AC 117 ms
41,492 KB
testcase_04 AC 134 ms
41,520 KB
testcase_05 AC 129 ms
41,428 KB
testcase_06 AC 129 ms
41,748 KB
testcase_07 AC 133 ms
41,572 KB
testcase_08 AC 119 ms
41,468 KB
testcase_09 AC 134 ms
41,288 KB
testcase_10 AC 135 ms
41,460 KB
testcase_11 AC 134 ms
41,176 KB
testcase_12 AC 135 ms
41,432 KB
testcase_13 AC 136 ms
41,500 KB
testcase_14 AC 138 ms
41,492 KB
testcase_15 AC 138 ms
41,648 KB
testcase_16 AC 136 ms
41,688 KB
testcase_17 AC 119 ms
41,236 KB
testcase_18 AC 136 ms
41,648 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 133 ms
41,588 KB
testcase_22 AC 138 ms
41,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


public class Main_yukicoder851 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		int n = Integer.parseInt(sc.nextLine());
		
		String aa = sc.nextLine();
		String[] aaa = aa.split(" ");
		if (aaa.length > 1) {
			pr.println("assert");
			return;
		}

		long[] a = new long[n];
		a[0] = Long.parseLong(aaa[0]);
		for (int i = 1; i < n; i++) {
			a[i] = sc.nextLong();
		}

		Arrays.sort(a);

		long tmp = Math.max(a[0] + a[2], a[0] + a[1]);
		if (tmp == a[1] + a[2]) {
			tmp = a[0] + a[1];
		}
		
		pr.println(tmp);
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);
			
		solve();
			
		pr.close();
		sc.close();
	}

	static class Printer extends PrintWriter {
		Printer(OutputStream out) {
			super(out);
		}
		
		void printInts(int... a) {
			StringBuilder sb = new StringBuilder(32);
			for (int i = 0, size = a.length; i < size; i++) {
				if (i > 0) {
					sb.append(' ');
				}
				sb.append(a[i]);
			}

			println(sb);
		}
		
		void printLongs(long... a) {
			StringBuilder sb = new StringBuilder(64);
			for (int i = 0, size = a.length; i < size; i++) {
				if (i > 0) {
					sb.append(' ');
				}
				sb.append(a[i]);
			}

			println(sb);
		}
		
		void printStrings(String... a) {
			StringBuilder sb = new StringBuilder(32);
			for (int i = 0, size = a.length; i < size; i++) {
				if (i > 0) {
					sb.append(' ');
				}
				sb.append(a[i]);
			}

			println(sb);
		}
	}
}
0