結果

問題 No.69 文字を自由に並び替え
ユーザー aaaaasatoriaaaaasatori
提出日時 2018-02-05 17:36:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 113 ms / 5,000 ms
コード長 766 bytes
コンパイル時間 2,967 ms
コンパイル使用メモリ 77,936 KB
実行使用メモリ 41,364 KB
最終ジャッジ日時 2024-05-08 05:41:48
合計ジャッジ時間 5,207 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
41,044 KB
testcase_01 AC 100 ms
40,664 KB
testcase_02 AC 113 ms
41,196 KB
testcase_03 AC 105 ms
41,352 KB
testcase_04 AC 104 ms
41,000 KB
testcase_05 AC 95 ms
40,120 KB
testcase_06 AC 106 ms
41,232 KB
testcase_07 AC 103 ms
41,172 KB
testcase_08 AC 103 ms
41,124 KB
testcase_09 AC 106 ms
41,208 KB
testcase_10 AC 104 ms
41,272 KB
testcase_11 AC 110 ms
41,364 KB
testcase_12 AC 101 ms
40,428 KB
testcase_13 AC 107 ms
41,184 KB
testcase_14 AC 97 ms
40,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No69 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String A = sc.next();
		String B = sc.next();
		char a [] = new char[A.length()];
		char b [] = new char[B.length()];
		char x;
		
		for(int i = 0;i < a.length;i++) {
			a[i] = A.charAt(i);
			b[i] = B.charAt(i);
		}
		
		for(int i = 0;i < a.length;i++) {
			for(int j = i + 1;j < a.length;j++) {
				if(a[i] > a[j]) {
					x = a[i];
					a[i] = a[j];
					a[j] = x;
				}
				if(b[i] > b[j]) {
					x = b[i];
					b[i] = b[j];
					b[j] = x;
				}
			}
		}
		
		for(int i = 0;i < a.length;i++) {
			if(a[i] != b[i]) {
				System.out.println("NO");
				break;
			}
			if(i == a.length - 1) {
				System.out.println("YES");
			}
		}
	}
}
0