結果

問題 No.69 文字を自由に並び替え
ユーザー soujikisoujiki
提出日時 2015-04-29 19:47:47
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 591 bytes
コンパイル時間 3,202 ms
コンパイル使用メモリ 74,672 KB
実行使用メモリ 41,668 KB
最終ジャッジ日時 2024-06-27 08:57:40
合計ジャッジ時間 5,729 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,348 KB
testcase_01 AC 119 ms
41,456 KB
testcase_02 AC 121 ms
41,228 KB
testcase_03 AC 113 ms
41,396 KB
testcase_04 WA -
testcase_05 AC 119 ms
41,328 KB
testcase_06 AC 108 ms
40,300 KB
testcase_07 AC 119 ms
41,164 KB
testcase_08 AC 109 ms
40,212 KB
testcase_09 AC 121 ms
41,668 KB
testcase_10 AC 123 ms
41,148 KB
testcase_11 AC 121 ms
41,536 KB
testcase_12 AC 120 ms
41,348 KB
testcase_13 AC 110 ms
41,096 KB
testcase_14 AC 120 ms
41,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Yukicoder_69{
	public static void main(String[] args){
		Scanner stdIn = new Scanner(System.in);
		String A = stdIn.next();
		String B = stdIn.next();
		boolean[] judg = new boolean[A.length()];
		Arrays.fill(judg,true);
		for(int i=0;i<B.length();i++){
			char ch = B.charAt(i);
			for(int j=0;j<A.length();j++){
				if(judg[j] && ch == A.charAt(j)){
					judg[j] = false;
				}
			}
		}	

		for(int i=0;i<judg.length;i++){
			if(judg[i]){
				System.out.println("NO");
				break;
			}
			if(i==judg.length-1){
				System.out.println("YES");
			}
		}
	}
}
0