結果

問題 No.69 文字を自由に並び替え
ユーザー len_proglen_prog
提出日時 2016-06-08 11:46:57
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 479 bytes
コンパイル時間 2,857 ms
コンパイル使用メモリ 74,232 KB
実行使用メモリ 53,956 KB
最終ジャッジ日時 2024-06-27 13:31:55
合計ジャッジ時間 5,653 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,200 KB
testcase_01 AC 132 ms
41,212 KB
testcase_02 AC 132 ms
41,068 KB
testcase_03 AC 131 ms
41,292 KB
testcase_04 WA -
testcase_05 AC 133 ms
41,552 KB
testcase_06 AC 131 ms
41,424 KB
testcase_07 AC 131 ms
41,468 KB
testcase_08 AC 131 ms
41,548 KB
testcase_09 AC 132 ms
41,020 KB
testcase_10 AC 129 ms
41,272 KB
testcase_11 AC 130 ms
41,304 KB
testcase_12 AC 129 ms
41,520 KB
testcase_13 AC 132 ms
41,304 KB
testcase_14 AC 131 ms
41,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		char[] A = scan.next().toCharArray();
		char[] B = scan.next().toCharArray();

		int count = 0;
		for(int i = 0; i < A.length; i++){
			for(int j = 0; j < B.length; j++){
				if(A[i] == B[j]){
					count++;
					break;
				}
			}
		}

		String result;
		result = count == A.length ? "YES":"NO";
		System.out.println(result);
		scan.close();
	}

}
0