結果
問題 | No.1592 Tenkei 90 |
ユーザー | Asahi |
提出日時 | 2023-02-06 08:06:16 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 125 ms / 1,000 ms |
コード長 | 947 bytes |
コンパイル時間 | 2,048 ms |
コンパイル使用メモリ | 79,744 KB |
実行使用メモリ | 54,276 KB |
最終ジャッジ日時 | 2024-07-04 14:26:10 |
合計ジャッジ時間 | 5,310 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 120 ms
54,156 KB |
testcase_01 | AC | 119 ms
54,108 KB |
testcase_02 | AC | 119 ms
54,156 KB |
testcase_03 | AC | 120 ms
53,888 KB |
testcase_04 | AC | 107 ms
52,848 KB |
testcase_05 | AC | 117 ms
53,964 KB |
testcase_06 | AC | 120 ms
54,164 KB |
testcase_07 | AC | 118 ms
54,024 KB |
testcase_08 | AC | 118 ms
54,124 KB |
testcase_09 | AC | 117 ms
54,060 KB |
testcase_10 | AC | 120 ms
54,244 KB |
testcase_11 | AC | 118 ms
54,024 KB |
testcase_12 | AC | 125 ms
54,248 KB |
testcase_13 | AC | 124 ms
54,164 KB |
testcase_14 | AC | 123 ms
54,140 KB |
testcase_15 | AC | 118 ms
54,048 KB |
testcase_16 | AC | 116 ms
54,276 KB |
testcase_17 | AC | 102 ms
53,004 KB |
testcase_18 | AC | 119 ms
54,096 KB |
testcase_19 | AC | 120 ms
54,020 KB |
ソースコード
import java.util.*; import java.io.*; import java.math.*; // import java.util.stream.Stream; class Main{ static BufferedReader buff = new BufferedReader(new InputStreamReader(System.in)); static StringTokenizer st; static PrintWriter output = new PrintWriter(System.out); static Scanner sc = new Scanner(System.in); public static void main(String[] args) throws IOException{ String S = sc.next(); ArrayList<String> base = new ArrayList<>(); ArrayList<String> ans = new ArrayList<>(); String b = "kyoprotenkei90"; for(int i=0;i<S.length();i++) base.add(b.substring(i,i+1)); for(int i=0;i<S.length();i++) ans.add(S.substring(i,i+1)); Collections.sort(base); Collections.sort(ans); boolean ok = true; for(int i=0;i<S.length();i++) if(!base.get(i).equals(ans.get(i))) ok = false; output.print(ok?"Yes":"No"); output.flush(); } }