結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,420 KB
testcase_01 AC 138 ms
41,464 KB
testcase_02 AC 114 ms
41,204 KB
testcase_03 AC 132 ms
41,308 KB
testcase_04 AC 132 ms
41,564 KB
testcase_05 AC 135 ms
41,424 KB
testcase_06 AC 134 ms
41,556 KB
testcase_07 AC 138 ms
41,548 KB
testcase_08 AC 135 ms
41,704 KB
testcase_09 AC 133 ms
41,452 KB
testcase_10 AC 133 ms
41,456 KB
testcase_11 AC 133 ms
41,172 KB
testcase_12 AC 132 ms
41,232 KB
testcase_13 AC 131 ms
41,528 KB
testcase_14 AC 131 ms
41,688 KB
testcase_15 AC 135 ms
41,476 KB
testcase_16 AC 133 ms
41,536 KB
testcase_17 AC 134 ms
41,236 KB
testcase_18 AC 133 ms
41,272 KB
testcase_19 AC 127 ms
41,208 KB
testcase_20 AC 125 ms
41,100 KB
testcase_21 AC 119 ms
41,420 KB
testcase_22 AC 120 ms
41,208 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