結果
問題 | No.69 文字を自由に並び替え |
ユーザー | taku-tech |
提出日時 | 2021-05-23 02:16:59 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 137 ms / 5,000 ms |
コード長 | 934 bytes |
コンパイル時間 | 3,706 ms |
コンパイル使用メモリ | 74,948 KB |
実行使用メモリ | 41,492 KB |
最終ジャッジ日時 | 2024-10-11 02:31:08 |
合計ジャッジ時間 | 6,351 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 137 ms
41,400 KB |
testcase_01 | AC | 134 ms
41,096 KB |
testcase_02 | AC | 131 ms
40,920 KB |
testcase_03 | AC | 130 ms
41,304 KB |
testcase_04 | AC | 129 ms
41,076 KB |
testcase_05 | AC | 131 ms
41,116 KB |
testcase_06 | AC | 131 ms
41,188 KB |
testcase_07 | AC | 134 ms
41,380 KB |
testcase_08 | AC | 134 ms
41,040 KB |
testcase_09 | AC | 134 ms
41,260 KB |
testcase_10 | AC | 131 ms
41,376 KB |
testcase_11 | AC | 134 ms
41,392 KB |
testcase_12 | AC | 117 ms
40,256 KB |
testcase_13 | AC | 128 ms
41,060 KB |
testcase_14 | AC | 132 ms
41,492 KB |
ソースコード
package change_char; import java.util.Arrays; import java.util.Scanner; public class ChangeChar { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String A = sc.nextLine(); String B = sc.nextLine(); if(checkWord(A, B)) { System.out.println("YES"); } else { System.out.println("NO"); } } private static boolean checkWord(String a, String b) { boolean[] checkChar = new boolean[b.length()]; //bの文字に一致したかをチェックする用の配列 boolean[] checkFlag = new boolean[checkChar.length]; Arrays.fill(checkFlag, true); //Aの文字列から一つずつ文字を取り出して一致するか検査 for(int i = 0; i < a.length(); i++) { for(int j = 0; j < b.length(); j++) { if(a.charAt(i) == b.charAt(j) && !checkChar[j]) { checkChar[j] = true; break; } } } return Arrays.equals(checkChar, checkFlag); } }