結果
問題 | No.587 七対子 |
ユーザー | kohaku_kohaku |
提出日時 | 2019-02-21 23:16:24 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 872 bytes |
コンパイル時間 | 2,536 ms |
コンパイル使用メモリ | 75,156 KB |
実行使用メモリ | 56,024 KB |
最終ジャッジ日時 | 2024-11-21 12:09:08 |
合計ジャッジ時間 | 8,098 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 131 ms
54,036 KB |
testcase_01 | AC | 132 ms
54,136 KB |
testcase_02 | AC | 133 ms
54,272 KB |
testcase_03 | AC | 137 ms
54,272 KB |
testcase_04 | AC | 134 ms
54,496 KB |
testcase_05 | AC | 129 ms
54,104 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 137 ms
54,064 KB |
testcase_10 | AC | 136 ms
54,100 KB |
testcase_11 | WA | - |
testcase_12 | AC | 134 ms
54,120 KB |
testcase_13 | AC | 135 ms
54,228 KB |
testcase_14 | AC | 135 ms
54,116 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 132 ms
54,220 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 130 ms
53,972 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | AC | 132 ms
54,408 KB |
testcase_31 | WA | - |
testcase_32 | AC | 132 ms
53,984 KB |
testcase_33 | AC | 131 ms
54,024 KB |
testcase_34 | AC | 135 ms
54,152 KB |
ソースコード
import java.util.Scanner; public class Main { static public void main(String[]args) throws Exception { Scanner sc = new Scanner(System.in); String s = sc.next(); solve(s); } static void solve(String s) throws Exception { int [] alphabet = new int[26]; for(int i=0; i<s.length(); i++) { int tmp = s.charAt(i) - 'a'; alphabet[tmp]++; } int ans = searchAns(alphabet); if(ans == -1) { System.out.println("Impossible"); } else { System.out.println( (char)('a' + ans) ); } } static int searchAns(int [] alphabet) throws Exception { final int NUM_ALPHABET = 26; int count = -1; for(int i=0; i < NUM_ALPHABET; i++) { if(alphabet[i] == 0 || alphabet[i] == 2) { //nothing } else if(alphabet[i] == 1) { if(count == -1) { count = i; } else { break; } } else { break; } } return count; } }