結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,316 KB
testcase_01 AC 123 ms
40,988 KB
testcase_02 AC 119 ms
41,088 KB
testcase_03 AC 122 ms
41,452 KB
testcase_04 WA -
testcase_05 AC 120 ms
41,228 KB
testcase_06 AC 124 ms
41,084 KB
testcase_07 AC 126 ms
40,988 KB
testcase_08 AC 123 ms
41,456 KB
testcase_09 AC 122 ms
40,992 KB
testcase_10 AC 121 ms
41,188 KB
testcase_11 AC 121 ms
41,272 KB
testcase_12 AC 122 ms
41,124 KB
testcase_13 AC 122 ms
41,236 KB
testcase_14 AC 126 ms
41,312 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