結果

問題 No.69 文字を自由に並び替え
ユーザー shinwisteriashinwisteria
提出日時 2017-03-18 21:27:06
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 393 bytes
コンパイル時間 3,666 ms
コンパイル使用メモリ 75,280 KB
実行使用メモリ 41,788 KB
最終ジャッジ日時 2024-06-27 13:42:03
合計ジャッジ時間 5,851 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,160 KB
testcase_01 AC 130 ms
41,400 KB
testcase_02 AC 128 ms
40,924 KB
testcase_03 AC 127 ms
41,520 KB
testcase_04 WA -
testcase_05 AC 131 ms
41,228 KB
testcase_06 AC 132 ms
41,328 KB
testcase_07 AC 131 ms
41,360 KB
testcase_08 AC 129 ms
41,548 KB
testcase_09 AC 131 ms
40,908 KB
testcase_10 AC 112 ms
41,352 KB
testcase_11 AC 116 ms
40,332 KB
testcase_12 AC 128 ms
41,564 KB
testcase_13 AC 123 ms
41,312 KB
testcase_14 AC 130 ms
41,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Narabikae {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		char[] A = s.nextLine().toCharArray();
		String B = s.nextLine();
		s.close();
		int n = 0;
		for(char c : A){
			if(B.indexOf(c) >= 0){
				n++;
			}
		}
		
		if(n == B.length()){
			System.out.println("YES");
		}else{
			System.out.println("NO");
		}
	}

}
0