結果

問題 No.1395 Less Sweet Alchemy
ユーザー xRS43BofaUEZ5gcxRS43BofaUEZ5gc
提出日時 2021-03-05 09:19:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 804 bytes
コンパイル時間 3,086 ms
コンパイル使用メモリ 74,608 KB
実行使用メモリ 54,240 KB
最終ジャッジ日時 2024-10-06 04:36:08
合計ジャッジ時間 5,600 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
53,964 KB
testcase_01 AC 114 ms
52,632 KB
testcase_02 AC 126 ms
53,912 KB
testcase_03 AC 124 ms
54,048 KB
testcase_04 AC 109 ms
52,832 KB
testcase_05 AC 119 ms
54,200 KB
testcase_06 AC 129 ms
54,240 KB
testcase_07 AC 128 ms
54,052 KB
testcase_08 AC 135 ms
54,036 KB
testcase_09 AC 124 ms
54,088 KB
testcase_10 AC 123 ms
53,940 KB
testcase_11 AC 129 ms
53,928 KB
testcase_12 AC 129 ms
54,168 KB
testcase_13 AC 127 ms
53,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class HelloWorld {

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

	    	Scanner sc = new Scanner(System.in);
	    	int n = sc.nextInt();
	    	int x = sc.nextInt();
	    	int[] ci = new int[n];

	    	boolean flag_equal = false;
	    	boolean flag_smaller = false;
	    	boolean flag_bigger = false;
	    	for (int i=0; i < n; i ++) {
	    		ci[i] = sc.nextInt();
	    		if (ci[i] == x) {flag_equal = true;}
	    		if (ci[i] > x) {flag_bigger = true;}
	    		if (ci[i] < x) {flag_smaller = true;}
	    	}
	    	sc.close();

	    	if (flag_equal == true) {
	    		System.out.println("Yes");
	    	}else if (flag_bigger ==true && flag_smaller == true) {
	    		System.out.println("Yes");
	    	}else {
	    		System.out.println("No");
	    	}

	    }
}

0