結果

問題 No.851 テストケース
ユーザー CuriousFairy315CuriousFairy315
提出日時 2019-06-12 14:46:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 3,153 ms
コード長 577 bytes
コンパイル時間 2,319 ms
コンパイル使用メモリ 74,592 KB
実行使用メモリ 41,796 KB
最終ジャッジ日時 2024-10-10 18:50:23
合計ジャッジ時間 6,335 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,100 KB
testcase_01 AC 131 ms
41,372 KB
testcase_02 AC 126 ms
41,304 KB
testcase_03 AC 133 ms
41,192 KB
testcase_04 AC 133 ms
41,408 KB
testcase_05 AC 134 ms
41,260 KB
testcase_06 AC 134 ms
41,180 KB
testcase_07 AC 136 ms
41,180 KB
testcase_08 AC 139 ms
41,352 KB
testcase_09 AC 138 ms
41,428 KB
testcase_10 AC 137 ms
41,796 KB
testcase_11 AC 123 ms
40,060 KB
testcase_12 AC 124 ms
40,552 KB
testcase_13 AC 137 ms
41,340 KB
testcase_14 AC 137 ms
41,304 KB
testcase_15 AC 136 ms
41,412 KB
testcase_16 AC 134 ms
41,272 KB
testcase_17 AC 134 ms
41,152 KB
testcase_18 AC 134 ms
41,580 KB
testcase_19 AC 127 ms
41,232 KB
testcase_20 AC 127 ms
41,368 KB
testcase_21 AC 137 ms
41,016 KB
testcase_22 AC 132 ms
40,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		sc.nextLine();
		long A[] = new long[3];
		String A1 = sc.nextLine();
		if (A1.indexOf(' ') < 0) {
			A[0] = Long.valueOf(A1);
			A[1] = sc.nextLong();
			A[2] = sc.nextLong();
			if (A[0] == A[1] || A[1] == A[2]) System.out.println(Math.min(A[0], A[1]) + Math.min(A[1], A[2]));
			else {
				Arrays.sort(A);
				System.out.println(A[0] + A[2]);
			}
		} else {
			System.out.println("\"assert\"");
		}
		sc.close();
	}
}
0