結果

問題 No.851 テストケース
ユーザー tsunabittsunabit
提出日時 2019-08-09 17:34:06
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 554 bytes
コンパイル時間 3,436 ms
コンパイル使用メモリ 74,372 KB
実行使用メモリ 41,824 KB
最終ジャッジ日時 2024-07-19 07:40:02
合計ジャッジ時間 6,820 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
41,440 KB
testcase_01 AC 115 ms
41,204 KB
testcase_02 WA -
testcase_03 AC 104 ms
41,388 KB
testcase_04 AC 118 ms
41,544 KB
testcase_05 AC 105 ms
41,432 KB
testcase_06 AC 107 ms
41,048 KB
testcase_07 AC 117 ms
41,416 KB
testcase_08 AC 119 ms
41,344 KB
testcase_09 AC 118 ms
41,088 KB
testcase_10 AC 108 ms
41,540 KB
testcase_11 AC 128 ms
41,448 KB
testcase_12 AC 121 ms
41,704 KB
testcase_13 AC 128 ms
41,824 KB
testcase_14 AC 118 ms
41,228 KB
testcase_15 AC 120 ms
40,148 KB
testcase_16 AC 119 ms
41,056 KB
testcase_17 AC 115 ms
41,336 KB
testcase_18 AC 115 ms
41,192 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 106 ms
41,392 KB
testcase_22 AC 121 ms
41,212 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