結果

問題 No.1366 交換門松列・梅
ユーザー xRS43BofaUEZ5gcxRS43BofaUEZ5gc
提出日時 2021-03-02 09:53:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 114 ms / 1,000 ms
コード長 1,168 bytes
コンパイル時間 2,944 ms
コンパイル使用メモリ 77,700 KB
実行使用メモリ 54,064 KB
最終ジャッジ日時 2024-12-16 13:19:30
合計ジャッジ時間 5,054 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
53,824 KB
testcase_01 AC 103 ms
52,892 KB
testcase_02 AC 110 ms
53,880 KB
testcase_03 AC 107 ms
53,848 KB
testcase_04 AC 96 ms
52,668 KB
testcase_05 AC 111 ms
53,824 KB
testcase_06 AC 111 ms
53,756 KB
testcase_07 AC 110 ms
54,064 KB
testcase_08 AC 108 ms
53,820 KB
testcase_09 AC 96 ms
52,688 KB
testcase_10 AC 100 ms
53,012 KB
testcase_11 AC 110 ms
54,036 KB
testcase_12 AC 114 ms
53,900 KB
testcase_13 AC 101 ms
53,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class HelloWorld {

	    public static void main(String[] args) throws Exception {

	    	Scanner sc = new Scanner(System.in);
	    	int[] arr1 = new int[3];
	    	int[] arr2 = new int[3];
	        for (int i = 0 ;  i < 3; i ++) {
	        	arr1[i] = sc.nextInt();
	        }
	        for (int i = 0 ;  i < 3; i ++) {
	        	arr2[i] = sc.nextInt();
	        }
	        sc.close();

	        boolean flag = false;

	        for (int i = 0; i < 3; i ++) {
	        	if (flag == true) {break;}
	        	for (int j = 0; j < 3; j ++) {
	        		int temp = 0;
	        		temp = arr1[i];
	        		arr1[i] = arr2[j];
	        		arr2[j] = temp;
	        		if (is_matsu(arr1) && is_matsu(arr2)) {
	        			flag = true;
	        			break;
	        		}
	        		temp = arr1[i];
	        		arr1[i] = arr2[j];
	        		arr2[j] = temp;
	        	}
	        }

            
	        System.out.println(flag ?  "Yes" : "No");

	     }




	    static boolean is_matsu(int[] arr) {
	    	return (arr[0] < arr[1] && arr[2] < arr[1] && arr[0] != arr[2]) ||
	    			    (arr[0] > arr[1] && arr[2] > arr[1] && arr[0] != arr[2]);
	    }



	}
0