結果

問題 No.851 テストケース
ユーザー tsunabittsunabit
提出日時 2019-08-09 17:37:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 3,153 ms
コード長 558 bytes
コンパイル時間 3,749 ms
コンパイル使用メモリ 80,684 KB
実行使用メモリ 41,512 KB
最終ジャッジ日時 2024-07-19 07:40:11
合計ジャッジ時間 6,270 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
41,288 KB
testcase_01 AC 107 ms
41,312 KB
testcase_02 AC 116 ms
41,196 KB
testcase_03 AC 109 ms
40,396 KB
testcase_04 AC 117 ms
41,112 KB
testcase_05 AC 118 ms
41,112 KB
testcase_06 AC 115 ms
41,212 KB
testcase_07 AC 102 ms
41,228 KB
testcase_08 AC 114 ms
41,236 KB
testcase_09 AC 117 ms
41,220 KB
testcase_10 AC 104 ms
41,316 KB
testcase_11 AC 117 ms
41,208 KB
testcase_12 AC 121 ms
41,512 KB
testcase_13 AC 114 ms
40,172 KB
testcase_14 AC 120 ms
41,428 KB
testcase_15 AC 108 ms
40,624 KB
testcase_16 AC 109 ms
40,252 KB
testcase_17 AC 112 ms
40,144 KB
testcase_18 AC 109 ms
39,948 KB
testcase_19 AC 115 ms
41,028 KB
testcase_20 AC 97 ms
39,376 KB
testcase_21 AC 115 ms
41,220 KB
testcase_22 AC 105 ms
41,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No851 {
    public static void main(String[] args) {
    	Scanner sc = new Scanner(System.in);
    	String n = sc.nextLine();
    	String aa = sc.nextLine();
    	
    	if(aa.contains(" ")) {
    		System.out.println("\"assert\"");
    		return;
    	}
    	long a1 = Long.parseLong(aa), a2 = sc.nextLong(), a3 = sc.nextLong();
    	long[] a = {a1 + a2, a1 + a3, a2 + a3};
    	Arrays.sort(a);
    	if(a[1] == a[2]) System.out.println(a[0]);
    	else System.out.println(a[1]);
    }
}
0