結果
問題 | No.69 文字を自由に並び替え |
ユーザー | soujiki |
提出日時 | 2015-04-29 19:51:16 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 125 ms / 5,000 ms |
コード長 | 603 bytes |
コンパイル時間 | 3,868 ms |
コンパイル使用メモリ | 75,536 KB |
実行使用メモリ | 54,116 KB |
最終ジャッジ日時 | 2024-05-08 04:49:55 |
合計ジャッジ時間 | 5,894 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 122 ms
53,724 KB |
testcase_01 | AC | 120 ms
53,736 KB |
testcase_02 | AC | 121 ms
53,968 KB |
testcase_03 | AC | 123 ms
53,852 KB |
testcase_04 | AC | 110 ms
52,576 KB |
testcase_05 | AC | 122 ms
53,980 KB |
testcase_06 | AC | 117 ms
54,036 KB |
testcase_07 | AC | 121 ms
54,020 KB |
testcase_08 | AC | 125 ms
53,932 KB |
testcase_09 | AC | 124 ms
53,812 KB |
testcase_10 | AC | 123 ms
54,056 KB |
testcase_11 | AC | 124 ms
54,116 KB |
testcase_12 | AC | 124 ms
53,764 KB |
testcase_13 | AC | 123 ms
54,116 KB |
testcase_14 | AC | 108 ms
52,660 KB |
ソースコード
import java.util.*; public class Yukicoder_69{ public static void main(String[] args){ Scanner stdIn = new Scanner(System.in); String A = stdIn.next(); String B = stdIn.next(); boolean[] judg = new boolean[A.length()]; Arrays.fill(judg,true); for(int i=0;i<B.length();i++){ char ch = B.charAt(i); for(int j=0;j<A.length();j++){ if(judg[j] && ch == A.charAt(j)){ judg[j] = false; break; } } } for(int i=0;i<judg.length;i++){ if(judg[i]){ System.out.println("NO"); break; } if(i==judg.length-1){ System.out.println("YES"); } } } }