結果

問題 No.1257 変わった平均値
ユーザー ks2mks2m
提出日時 2020-10-16 21:32:25
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 529 bytes
コンパイル時間 2,340 ms
コンパイル使用メモリ 74,520 KB
実行使用メモリ 56,004 KB
最終ジャッジ日時 2024-07-20 21:13:01
合計ジャッジ時間 6,840 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
53,864 KB
testcase_01 AC 138 ms
53,880 KB
testcase_02 AC 139 ms
53,836 KB
testcase_03 AC 139 ms
54,132 KB
testcase_04 AC 139 ms
54,168 KB
testcase_05 AC 139 ms
53,840 KB
testcase_06 AC 140 ms
54,080 KB
testcase_07 AC 141 ms
54,164 KB
testcase_08 AC 137 ms
54,076 KB
testcase_09 AC 139 ms
53,800 KB
testcase_10 AC 143 ms
53,756 KB
testcase_11 AC 139 ms
53,984 KB
testcase_12 AC 141 ms
53,792 KB
testcase_13 AC 144 ms
54,016 KB
testcase_14 AC 137 ms
54,040 KB
testcase_15 AC 139 ms
53,800 KB
testcase_16 AC 137 ms
54,032 KB
testcase_17 AC 137 ms
54,340 KB
testcase_18 AC 141 ms
54,112 KB
testcase_19 AC 142 ms
54,056 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

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");
	}
}
0