結果

問題 No.1257 変わった平均値
ユーザー 遭難者遭難者
提出日時 2020-10-16 23:15:48
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 537 bytes
コンパイル時間 4,560 ms
コンパイル使用メモリ 74,724 KB
実行使用メモリ 54,680 KB
最終ジャッジ日時 2024-07-20 23:45:42
合計ジャッジ時間 5,508 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
40,492 KB
testcase_01 AC 107 ms
41,144 KB
testcase_02 AC 105 ms
41,256 KB
testcase_03 AC 106 ms
41,404 KB
testcase_04 AC 105 ms
41,152 KB
testcase_05 AC 95 ms
40,212 KB
testcase_06 AC 95 ms
40,280 KB
testcase_07 AC 97 ms
39,872 KB
testcase_08 AC 96 ms
40,040 KB
testcase_09 AC 110 ms
41,808 KB
testcase_10 AC 107 ms
41,412 KB
testcase_11 AC 106 ms
41,096 KB
testcase_12 AC 95 ms
40,072 KB
testcase_13 AC 108 ms
41,248 KB
testcase_14 AC 110 ms
41,192 KB
testcase_15 AC 107 ms
41,212 KB
testcase_16 AC 98 ms
40,608 KB
testcase_17 AC 102 ms
41,000 KB
testcase_18 AC 91 ms
40,236 KB
testcase_19 AC 105 ms
41,456 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		PrintWriter ou = new PrintWriter(System.out);
		int[][] a = new int[2][3];
		for(int i = 0 ; i < 2 ; i++){
			for(int j = 0 ; j < 3 ; j++){
				a[i][j] = Integer.parseInt(sc.next());
			}
			Arrays.sort(a[i]);
		}
		boolean q = true;
		for(int i = 0 ; i < 3 && q ; i++){
			if(a[0][i] != a[1][i]) q = false;
		}
		if(q) ou.println("Yes");
		else ou.println("No");
		ou.flush();
		sc.close();
	}
}
0