結果
問題 | No.69 文字を自由に並び替え |
ユーザー | fukusei |
提出日時 | 2017-05-27 13:21:29 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 553 bytes |
コンパイル時間 | 2,146 ms |
コンパイル使用メモリ | 74,644 KB |
実行使用メモリ | 54,240 KB |
最終ジャッジ日時 | 2024-06-27 13:46:26 |
合計ジャッジ時間 | 4,873 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 122 ms
41,300 KB |
testcase_01 | WA | - |
testcase_02 | AC | 125 ms
41,048 KB |
testcase_03 | AC | 124 ms
41,372 KB |
testcase_04 | WA | - |
testcase_05 | AC | 124 ms
41,488 KB |
testcase_06 | AC | 123 ms
41,544 KB |
testcase_07 | AC | 124 ms
41,056 KB |
testcase_08 | AC | 124 ms
41,236 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 125 ms
41,364 KB |
testcase_12 | AC | 126 ms
41,472 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
ソースコード
import java.util.*; class test{ public static void main(String[] args){ Scanner sc = new Scanner(System.in); String A = sc.next(); char[] a = A.toCharArray(); String B = sc.next(); char[] b = B.toCharArray(); String str = "YES"; for(int i=0; i<a.length; i++){ for(int j=0; j<b.length; j++){ if(a[i] != '0' && a[i] == b[j]){ a[i] = '0'; b[j] = '0'; } } } for(int i=0; i<a.length; i++){ if(a[i] != '0'){ System.out.println(a[i]); str = "NO"; break; } } System.out.println(str); } }