結果

問題 No.1592 Tenkei 90
ユーザー NASU41NASU41
提出日時 2021-05-04 13:43:13
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 766 bytes
コンパイル時間 2,511 ms
コンパイル使用メモリ 75,044 KB
実行使用メモリ 54,396 KB
最終ジャッジ日時 2024-07-01 14:14:36
合計ジャッジ時間 5,716 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 115 ms
40,156 KB
testcase_06 AC 125 ms
41,356 KB
testcase_07 AC 124 ms
41,224 KB
testcase_08 AC 126 ms
41,396 KB
testcase_09 AC 111 ms
39,932 KB
testcase_10 AC 124 ms
41,436 KB
testcase_11 AC 111 ms
39,932 KB
testcase_12 AC 112 ms
40,460 KB
testcase_13 AC 128 ms
41,596 KB
testcase_14 AC 127 ms
41,436 KB
testcase_15 AC 126 ms
41,500 KB
testcase_16 AC 129 ms
41,140 KB
testcase_17 WA -
testcase_18 AC 126 ms
41,344 KB
testcase_19 AC 127 ms
41,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception{
        Scanner sc = new Scanner(System.in);
        String s = sc.next();
        String target = "redcoder";

        char[] charInInput = new char[s.length()], charInTarget = new char[target.length()];
        for(int i=0; i<s.length(); i++) charInInput[i] = s.charAt(i);
        for(int i=0; i<target.length(); i++) charInTarget[i] = target.charAt(i);

        //「一方を並べ替えて他方にできるか?」⇔「両方をソートして一致するか?」
        Arrays.sort(charInInput);
        Arrays.sort(charInTarget);
        if(Arrays.equals(charInInput, charInTarget)) System.out.println("Yes");
        else System.out.println("No");
    }
}
0