結果

問題 No.1257 変わった平均値
ユーザー ks2mks2m
提出日時 2020-10-16 21:33:22
言語 Java
(openjdk 23)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 554 bytes
コンパイル時間 2,560 ms
コンパイル使用メモリ 74,776 KB
実行使用メモリ 41,688 KB
最終ジャッジ日時 2024-07-20 21:13:29
合計ジャッジ時間 6,485 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int[] a = new int[3];
		int[] d = new int[3];
		for (int i = 0; i < 3; i++) {
			a[i] = sc.nextInt();
		}
		for (int i = 0; i < 3; i++) {
			d[i] = sc.nextInt();
		}
		sc.close();

		Arrays.sort(a);
		Arrays.sort(d);
		for (int i = 0; i < 3; i++) {
			if (a[i] != d[i]) {
				System.out.println("No");
				return;
			}
		}
		System.out.println("Yes");
		System.out.println(2);
	}
}
0