結果

問題 No.1934 Four Fruits
ユーザー eagleeagle
提出日時 2022-05-28 13:31:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 460 bytes
コンパイル時間 4,476 ms
コンパイル使用メモリ 73,644 KB
実行使用メモリ 41,600 KB
最終ジャッジ日時 2024-09-20 21:45:46
合計ジャッジ時間 6,249 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
41,600 KB
testcase_01 AC 117 ms
41,176 KB
testcase_02 AC 98 ms
39,652 KB
testcase_03 AC 128 ms
41,556 KB
testcase_04 AC 98 ms
40,064 KB
testcase_05 AC 126 ms
41,132 KB
testcase_06 AC 113 ms
41,364 KB
testcase_07 AC 115 ms
41,208 KB
testcase_08 AC 104 ms
40,164 KB
testcase_09 AC 99 ms
39,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner sc = new Scanner(System.in);
		int a = sc.nextInt();
		int b = sc.nextInt();
		int c = sc.nextInt();
		int d;
		if(a == b && b == c) {
			d = a;
		} else if(a == b) {
			d = c;
		} else if(a == c) {
			d = b;
		} else if(b == c) {
			d = a;
		} else {
			d = 6 - (a + b + c);
		}
		System.out.println(d);
	}
}
0