結果

問題 No.730 アルファベットパネル
ユーザー Mcpu3Mcpu3
提出日時 2018-09-08 14:25:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 320 bytes
コンパイル時間 2,075 ms
コンパイル使用メモリ 74,856 KB
実行使用メモリ 41,464 KB
最終ジャッジ日時 2024-05-09 14:14:50
合計ジャッジ時間 4,164 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,120 KB
testcase_01 AC 129 ms
40,952 KB
testcase_02 AC 113 ms
40,152 KB
testcase_03 AC 128 ms
41,464 KB
testcase_04 AC 129 ms
41,296 KB
testcase_05 AC 129 ms
41,072 KB
testcase_06 AC 133 ms
41,292 KB
testcase_07 AC 128 ms
41,080 KB
testcase_08 AC 130 ms
41,252 KB
testcase_09 AC 125 ms
41,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main{
	public static void main(String[] args) {
		Scanner sc=new Scanner(System.in);
		String s=sc.next();
		sc.close();
		int t[]=new int[26],i;
		for(i=0;i<s.length();++i) ++t[s.charAt(i)-'A'];
		for(i=0;i<26;++i) if(t[i]>1) break;
		System.out.print(i>25?"YES":"NO");
	}
}
0