結果
問題 | No.730 アルファベットパネル |
ユーザー | hirata0301 |
提出日時 | 2023-02-21 11:19:52 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 574 bytes |
コンパイル時間 | 3,824 ms |
コンパイル使用メモリ | 74,320 KB |
実行使用メモリ | 56,212 KB |
最終ジャッジ日時 | 2024-07-21 23:31:37 |
合計ジャッジ時間 | 4,392 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 124 ms
54,052 KB |
testcase_01 | WA | - |
testcase_02 | AC | 121 ms
53,032 KB |
testcase_03 | AC | 123 ms
54,100 KB |
testcase_04 | WA | - |
testcase_05 | AC | 123 ms
54,036 KB |
testcase_06 | WA | - |
testcase_07 | AC | 107 ms
52,880 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(System.in); String S = sc.next(); String[] word = S.split(""); int check = 0; for(int i = 0;i<word.length;i++){ for(int k = 0;k<word.length;k++){ if(i != k&&word[i] == word[k]){ check++; } } } if(check == 0){ System.out.print("YES"); }else{ System.out.print("NO"); } } }