結果

問題 No.730 アルファベットパネル
ユーザー heyanxxheyanxx
提出日時 2019-07-05 09:39:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 54 ms / 2,000 ms
コード長 764 bytes
コンパイル時間 3,358 ms
コンパイル使用メモリ 75,816 KB
実行使用メモリ 50,472 KB
最終ジャッジ日時 2024-09-19 20:08:51
合計ジャッジ時間 4,503 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
50,472 KB
testcase_01 AC 53 ms
50,340 KB
testcase_02 AC 53 ms
50,348 KB
testcase_03 AC 54 ms
50,376 KB
testcase_04 AC 54 ms
50,372 KB
testcase_05 AC 53 ms
50,388 KB
testcase_06 AC 53 ms
50,280 KB
testcase_07 AC 53 ms
50,336 KB
testcase_08 AC 53 ms
50,264 KB
testcase_09 AC 53 ms
50,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package test.demo;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashSet;
import java.util.List;
import java.util.Set;

public class Yukicoder730 {
	public static void main(String[]args) throws IOException {
		List<String>list=new ArrayList<String>();
		list=Arrays.asList(input());
		Set set=new HashSet(list);
		if(set.size()==list.size()) {
			System.out.println("YES");
		}else {
			System.out.println("NO");
		}
		
		
		
	}
	
	
	public static  String[] input() throws IOException {
		BufferedReader br =new BufferedReader(new InputStreamReader(System.in));
		
		String str=br.readLine();
		String[]str2=str.split("");
		
		return str2;
	}
}
0