結果

問題 No.69 文字を自由に並び替え
ユーザー yagi2yagi2
提出日時 2017-04-25 16:28:55
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 463 bytes
コンパイル時間 2,340 ms
コンパイル使用メモリ 76,676 KB
実行使用メモリ 41,416 KB
最終ジャッジ日時 2024-06-27 13:44:03
合計ジャッジ時間 4,961 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
41,108 KB
testcase_01 AC 119 ms
40,824 KB
testcase_02 AC 120 ms
41,268 KB
testcase_03 AC 113 ms
41,108 KB
testcase_04 WA -
testcase_05 AC 122 ms
41,060 KB
testcase_06 AC 112 ms
40,744 KB
testcase_07 AC 124 ms
41,152 KB
testcase_08 AC 122 ms
41,252 KB
testcase_09 AC 120 ms
41,320 KB
testcase_10 AC 120 ms
41,140 KB
testcase_11 AC 123 ms
41,244 KB
testcase_12 AC 125 ms
40,984 KB
testcase_13 AC 122 ms
41,416 KB
testcase_14 AC 123 ms
41,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        List<String> A = new ArrayList<>(Arrays.asList(sc.next().split("")));
        List<String> B = new ArrayList<>(Arrays.asList(sc.next().split("")));

        A.removeAll(B);

        System.out.println((A.size() == 0)? "YES" : "NO");
    }
}
0