結果

問題 No.851 テストケース
ユーザー shinwisteriashinwisteria
提出日時 2019-08-30 13:29:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 3,153 ms
コード長 600 bytes
コンパイル時間 3,409 ms
コンパイル使用メモリ 76,460 KB
実行使用メモリ 41,704 KB
最終ジャッジ日時 2024-11-21 05:52:02
合計ジャッジ時間 7,405 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,380 KB
testcase_01 AC 134 ms
41,648 KB
testcase_02 AC 129 ms
41,180 KB
testcase_03 AC 134 ms
41,260 KB
testcase_04 AC 137 ms
41,572 KB
testcase_05 AC 138 ms
41,448 KB
testcase_06 AC 134 ms
41,468 KB
testcase_07 AC 139 ms
41,588 KB
testcase_08 AC 135 ms
41,356 KB
testcase_09 AC 138 ms
41,660 KB
testcase_10 AC 138 ms
41,440 KB
testcase_11 AC 138 ms
41,260 KB
testcase_12 AC 135 ms
41,704 KB
testcase_13 AC 136 ms
41,356 KB
testcase_14 AC 136 ms
41,436 KB
testcase_15 AC 135 ms
41,576 KB
testcase_16 AC 136 ms
41,244 KB
testcase_17 AC 135 ms
41,328 KB
testcase_18 AC 137 ms
41,572 KB
testcase_19 AC 131 ms
41,048 KB
testcase_20 AC 129 ms
41,304 KB
testcase_21 AC 135 ms
41,544 KB
testcase_22 AC 129 ms
41,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package con_level_1half;
import java.util.Scanner;
import java.util.TreeSet;
public class Con851 {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		s.nextLine();
		String str = s.nextLine();
		Long A1 = 0l,A2 = 0l,A3 = 0l;
		if(str.contains(" ")){
			System.out.println("\"assert\"");
		}else{
			A1 = Long.parseLong(str);
			A2 = s.nextLong();
			A3 = s.nextLong();

			TreeSet<Long> ts = new TreeSet();
			ts.add(A1+A2);
			ts.add(A1+A3);
			ts.add(A2+A3);
			if(ts.size() > 1){
				ts.pollLast();
			}

			System.out.println(ts.pollLast());
		}
		s.close();
	}

}
0