結果
問題 | No.69 文字を自由に並び替え |
ユーザー | packer_jp |
提出日時 | 2017-01-21 19:28:42 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 132 ms / 5,000 ms |
コード長 | 973 bytes |
コンパイル時間 | 3,488 ms |
コンパイル使用メモリ | 77,692 KB |
実行使用メモリ | 54,404 KB |
最終ジャッジ日時 | 2024-12-14 06:27:54 |
合計ジャッジ時間 | 6,165 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 131 ms
54,176 KB |
testcase_01 | AC | 131 ms
54,404 KB |
testcase_02 | AC | 131 ms
54,144 KB |
testcase_03 | AC | 130 ms
53,872 KB |
testcase_04 | AC | 128 ms
54,108 KB |
testcase_05 | AC | 132 ms
54,144 KB |
testcase_06 | AC | 127 ms
53,840 KB |
testcase_07 | AC | 128 ms
54,320 KB |
testcase_08 | AC | 130 ms
54,008 KB |
testcase_09 | AC | 129 ms
54,264 KB |
testcase_10 | AC | 130 ms
54,068 KB |
testcase_11 | AC | 129 ms
53,844 KB |
testcase_12 | AC | 127 ms
53,904 KB |
testcase_13 | AC | 116 ms
52,768 KB |
testcase_14 | AC | 127 ms
54,080 KB |
ソースコード
import java.util.Scanner; public class Practice { public static void main(String args[]){ Scanner scanner=new Scanner(System.in); String A=scanner.next(),B=scanner.next(); String alphabet="abcdefghijklmnopqrstuvwxyz"; int[] Amatch=new int[alphabet.length()],Bmatch=new int[alphabet.length()]; for(int i=0;i<alphabet.length();i++){ Amatch[i]=0; Bmatch[i]=0; } for(int i=0;i<A.length();i++){ for(int j=0;j<alphabet.length();j++){ if(A.charAt(i)==alphabet.charAt(j)){ Amatch[j]++; } if(B.charAt(i)==alphabet.charAt(j)){ Bmatch[j]++; } } } for(int i=0;i<alphabet.length();i++){ if(Amatch[i]!=Bmatch[i]){ System.out.println("NO"); return; } } System.out.println("YES"); } }