結果

問題 No.851 テストケース
ユーザー heyanxxheyanxx
提出日時 2019-08-27 13:34:34
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 1,346 bytes
コンパイル時間 3,735 ms
コンパイル使用メモリ 78,576 KB
実行使用メモリ 37,304 KB
最終ジャッジ日時 2024-04-26 22:22:10
合計ジャッジ時間 5,811 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

package test.demo;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;
import java.util.TreeSet;

public class Yukicoder851 {
	static boolean flag=true;

	public static void main(String[] args) throws IOException {
		String A="";
		String B="";
		String C="";
		String D="";
		long a=0;
		long b=0;
		long c=0;
		long d=0;
		List list=new ArrayList();
		int tmp=Integer.valueOf(input()[0]);
		for(int i=0;i<tmp;i++) {
			if(!flag) {
				break;
			}
		switch(i) {
		case 0:
			A=input()[0];
			a=Long.valueOf(A);
			break;
		case 1:
			B=input()[0];
			b=Long.valueOf(B);
			list.add(a+b);
			break;
		case 2:
			C=input()[0];
			c=Long.valueOf(C);
			list.add(a+c);
			list.add(b+c);
			break;
	/*	case 3:
			D=input()[0];
			d=Long.valueOf(D);
			list.add(a+d);
			list.add(b+d);
			list.add(c+d);
			break;
			*/
		}
	}
		if(flag) {
			TreeSet set=new TreeSet(list);
			set.remove(set.last());
			System.out.println(set.last());
			
		}
	}
	public static  String[] input() throws IOException {
		BufferedReader br =new BufferedReader(new InputStreamReader(System.in));
		
		String str=br.readLine();
		String[]str2=str.split(" ");
		if(str2.length>1) {
			System.out.println("assert");
			flag=false;
		}
		return str2;
	}
}
0