結果

問題 No.1592 Tenkei 90
ユーザー NASU41NASU41
提出日時 2021-05-08 00:36:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 1,000 ms
コード長 772 bytes
コンパイル時間 2,800 ms
コンパイル使用メモリ 75,012 KB
実行使用メモリ 41,608 KB
最終ジャッジ日時 2024-07-01 14:18:14
合計ジャッジ時間 6,400 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
40,016 KB
testcase_01 AC 127 ms
41,020 KB
testcase_02 AC 129 ms
41,032 KB
testcase_03 AC 126 ms
41,268 KB
testcase_04 AC 125 ms
41,264 KB
testcase_05 AC 125 ms
41,028 KB
testcase_06 AC 126 ms
41,224 KB
testcase_07 AC 126 ms
40,828 KB
testcase_08 AC 125 ms
41,136 KB
testcase_09 AC 127 ms
41,216 KB
testcase_10 AC 126 ms
41,324 KB
testcase_11 AC 126 ms
41,608 KB
testcase_12 AC 125 ms
40,964 KB
testcase_13 AC 126 ms
41,256 KB
testcase_14 AC 125 ms
40,944 KB
testcase_15 AC 124 ms
40,836 KB
testcase_16 AC 124 ms
41,336 KB
testcase_17 AC 126 ms
41,032 KB
testcase_18 AC 123 ms
41,236 KB
testcase_19 AC 114 ms
40,108 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 = "kyoprotenkei90";

        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