結果

問題 No.69 文字を自由に並び替え
ユーザー ribenngeribennge
提出日時 2018-08-27 23:33:49
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 893 bytes
コンパイル時間 2,359 ms
コンパイル使用メモリ 77,020 KB
実行使用メモリ 41,172 KB
最終ジャッジ日時 2024-07-05 20:17:44
合計ジャッジ時間 4,657 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
40,752 KB
testcase_01 AC 115 ms
40,852 KB
testcase_02 AC 122 ms
40,912 KB
testcase_03 AC 152 ms
40,776 KB
testcase_04 WA -
testcase_05 AC 120 ms
40,884 KB
testcase_06 AC 117 ms
40,896 KB
testcase_07 AC 114 ms
40,700 KB
testcase_08 AC 117 ms
40,736 KB
testcase_09 AC 107 ms
40,144 KB
testcase_10 AC 116 ms
41,060 KB
testcase_11 AC 115 ms
41,100 KB
testcase_12 AC 104 ms
40,048 KB
testcase_13 AC 118 ms
41,172 KB
testcase_14 AC 119 ms
40,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class No_64{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		String a = sc.next();
		String b = sc.next();
		int cnt = 0;
		int judge1 = 1;
		int judge2 = 1;
		
		for(int i = 0;i < a.length();i++){
			char x = a.charAt(i);
			for(int t = 0;t < a.length();t++){
				char y = b.charAt(t);
				if(x == y){
					break;
				}
				cnt++;
			}
			if(cnt == a.length()){
				judge1 = 0;
				break;
			}
			cnt = 0;
		}
		
		for(int i = 0;i < a.length();i++){
			char x = b.charAt(i);
			for(int t = 0;t < a.length();t++){
				char y = a.charAt(t);
				if(x == y){
					break;
				}
				cnt++;
			}
			if(cnt == a.length()){
				judge2 = 0;
				break;
			}
			cnt = 0;
		}
		
		if(judge1 == 1 && judge2 == 1){
			System.out.println("YES");
		}else{
			System.out.println("NO");
		}
		
		}
	}
0