結果
問題 | No.730 アルファベットパネル |
ユーザー | hirata0301 |
提出日時 | 2023-02-21 11:20:50 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 574 bytes |
コンパイル時間 | 2,485 ms |
コンパイル使用メモリ | 75,020 KB |
実行使用メモリ | 54,188 KB |
最終ジャッジ日時 | 2024-07-21 23:33:37 |
合計ジャッジ時間 | 4,805 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 113 ms
53,888 KB |
testcase_01 | WA | - |
testcase_02 | AC | 103 ms
52,572 KB |
testcase_03 | AC | 114 ms
53,984 KB |
testcase_04 | WA | - |
testcase_05 | AC | 108 ms
52,928 KB |
testcase_06 | WA | - |
testcase_07 | AC | 114 ms
53,884 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"); } } }