結果

問題 No.1592 Tenkei 90
ユーザー kinkincindykinkincindy
提出日時 2021-07-09 21:52:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 1,000 ms
コード長 622 bytes
コンパイル時間 3,065 ms
コンパイル使用メモリ 74,412 KB
実行使用メモリ 41,452 KB
最終ジャッジ日時 2024-07-01 16:06:40
合計ジャッジ時間 5,971 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,212 KB
testcase_01 AC 123 ms
41,088 KB
testcase_02 AC 125 ms
40,872 KB
testcase_03 AC 125 ms
41,184 KB
testcase_04 AC 126 ms
41,236 KB
testcase_05 AC 126 ms
41,008 KB
testcase_06 AC 126 ms
41,032 KB
testcase_07 AC 123 ms
41,012 KB
testcase_08 AC 133 ms
41,120 KB
testcase_09 AC 115 ms
39,984 KB
testcase_10 AC 126 ms
41,308 KB
testcase_11 AC 125 ms
41,136 KB
testcase_12 AC 127 ms
41,000 KB
testcase_13 AC 127 ms
41,448 KB
testcase_14 AC 126 ms
41,064 KB
testcase_15 AC 129 ms
41,452 KB
testcase_16 AC 124 ms
41,140 KB
testcase_17 AC 127 ms
41,116 KB
testcase_18 AC 111 ms
41,208 KB
testcase_19 AC 124 ms
41,140 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