結果

問題 No.730 アルファベットパネル
ユーザー GrenacheGrenache
提出日時 2018-09-16 18:47:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 768 bytes
コンパイル時間 4,273 ms
コンパイル使用メモリ 74,980 KB
実行使用メモリ 54,108 KB
最終ジャッジ日時 2024-07-18 07:28:01
合計ジャッジ時間 5,458 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
54,028 KB
testcase_01 AC 103 ms
54,092 KB
testcase_02 AC 105 ms
53,972 KB
testcase_03 AC 96 ms
52,800 KB
testcase_04 AC 106 ms
53,812 KB
testcase_05 AC 106 ms
54,108 KB
testcase_06 AC 97 ms
52,720 KB
testcase_07 AC 109 ms
53,928 KB
testcase_08 AC 108 ms
54,084 KB
testcase_09 AC 104 ms
53,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


public class Main_yukicoder730 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		char[] s = sc.next().toCharArray();

		int[] cnt = new int[26];
		for (char c : s) {
			if (cnt[c - 'A']++ > 0) {
				pr.println("NO");
				return;
			}
		}

		pr.println("YES");
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(INPUT == null ? System.in : new ByteArrayInputStream(INPUT.getBytes()));
		pr = new Printer(System.out);

		solve();

//		pr.close();
		pr.flush();
//		sc.close();
	}

	static String INPUT = null;

	private static class Printer extends PrintWriter {
		Printer(OutputStream out) {
			super(out);
		}
	}
}
0