結果

問題 No.1592 Tenkei 90
ユーザー ks2mks2m
提出日時 2021-07-09 21:26:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 1,000 ms
コード長 372 bytes
コンパイル時間 2,242 ms
コンパイル使用メモリ 75,000 KB
実行使用メモリ 41,600 KB
最終ジャッジ日時 2024-07-01 15:07:47
合計ジャッジ時間 5,379 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,388 KB
testcase_01 AC 124 ms
41,316 KB
testcase_02 AC 117 ms
40,708 KB
testcase_03 AC 124 ms
41,336 KB
testcase_04 AC 125 ms
41,256 KB
testcase_05 AC 125 ms
41,164 KB
testcase_06 AC 112 ms
40,228 KB
testcase_07 AC 128 ms
41,524 KB
testcase_08 AC 127 ms
41,284 KB
testcase_09 AC 122 ms
41,224 KB
testcase_10 AC 127 ms
41,236 KB
testcase_11 AC 127 ms
41,368 KB
testcase_12 AC 125 ms
41,364 KB
testcase_13 AC 124 ms
41,600 KB
testcase_14 AC 124 ms
41,308 KB
testcase_15 AC 124 ms
41,280 KB
testcase_16 AC 126 ms
41,508 KB
testcase_17 AC 110 ms
40,228 KB
testcase_18 AC 110 ms
39,988 KB
testcase_19 AC 125 ms
41,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

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

		Arrays.sort(s);
		if ("09eeikknooprty".equals(String.valueOf(s))) {
			System.out.println("Yes");
		} else {
			System.out.println("No");
		}
	}
}
0