結果
問題 | No.69 文字を自由に並び替え |
ユーザー | Gchansanjou |
提出日時 | 2018-02-11 22:31:53 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,039 bytes |
コンパイル時間 | 3,509 ms |
コンパイル使用メモリ | 77,508 KB |
実行使用メモリ | 50,460 KB |
最終ジャッジ日時 | 2024-06-27 13:52:11 |
合計ジャッジ時間 | 4,820 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 50 ms
37,008 KB |
testcase_01 | AC | 50 ms
36,752 KB |
testcase_02 | AC | 50 ms
36,980 KB |
testcase_03 | AC | 49 ms
37,024 KB |
testcase_04 | AC | 48 ms
36,864 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 52 ms
36,972 KB |
testcase_09 | AC | 52 ms
37,076 KB |
testcase_10 | AC | 49 ms
36,928 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 50 ms
36,988 KB |
testcase_14 | AC | 49 ms
37,020 KB |
ソースコード
package yukiCoder; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class No00069 { public static void main(String[] args) { BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(System.in)); try { String input1 = bufferedReader.readLine(); String input2 = bufferedReader.readLine(); System.out.println(isEqual(input1, input2) ? "YES" : "NO"); } catch (IOException e) { e.printStackTrace(); } } public static Boolean isEqual(String input1 , String input2) { String[] indexArray = new String[input1.length()]; for(int i = 0; i < input2.length() ; i++) { String digit = String.valueOf(input2.charAt(i)); int index = input1.indexOf(digit); if (index != -1) { if(indexArray[index] == null) indexArray[index] = digit; } } StringBuilder builder = new StringBuilder(); for (int i = 0 ; i < indexArray.length ; i++) { builder.append(indexArray[i]); } return input1.equals(builder.toString()) ? true : false; } }