結果

問題 No.1592 Tenkei 90
ユーザー kinkincindykinkincindy
提出日時 2021-07-09 21:52:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 1,000 ms
コード長 622 bytes
コンパイル時間 2,444 ms
コンパイル使用メモリ 75,060 KB
実行使用メモリ 41,428 KB
最終ジャッジ日時 2024-07-01 16:08:10
合計ジャッジ時間 5,589 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,132 KB
testcase_01 AC 123 ms
40,880 KB
testcase_02 AC 112 ms
40,168 KB
testcase_03 AC 111 ms
39,924 KB
testcase_04 AC 124 ms
41,064 KB
testcase_05 AC 124 ms
41,428 KB
testcase_06 AC 123 ms
41,416 KB
testcase_07 AC 127 ms
41,240 KB
testcase_08 AC 125 ms
40,980 KB
testcase_09 AC 125 ms
40,948 KB
testcase_10 AC 126 ms
41,388 KB
testcase_11 AC 126 ms
41,184 KB
testcase_12 AC 126 ms
40,884 KB
testcase_13 AC 122 ms
40,968 KB
testcase_14 AC 113 ms
39,760 KB
testcase_15 AC 124 ms
40,912 KB
testcase_16 AC 125 ms
41,324 KB
testcase_17 AC 126 ms
41,152 KB
testcase_18 AC 126 ms
41,156 KB
testcase_19 AC 126 ms
41,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.lang.reflect.Array;
import java.util.*;

class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        char[] c = sc.next().toCharArray();
        Arrays.sort(c);
        char[] input = "kyoprotenkei90".toCharArray();
        Arrays.sort(input);

        if (input.length != c.length){
            System.out.print("No");
            return;
        }

        for (int i = 0; i < c.length; i++){
            if (c[i] != input[i]){
                System.out.print("No");
                return;
            }
        }
        System.out.print("Yes");

    }
}
0