結果

問題 No.587 七対子
ユーザー Mr.FukuMr.Fuku
提出日時 2018-08-06 16:00:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 221 bytes
コンパイル時間 97 ms
コンパイル使用メモリ 11,868 KB
実行使用メモリ 10,088 KB
最終ジャッジ日時 2023-10-19 22:11:28
合計ジャッジ時間 2,191 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,008 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 29 ms
10,008 KB
testcase_06 AC 30 ms
10,008 KB
testcase_07 AC 31 ms
10,008 KB
testcase_08 AC 29 ms
10,008 KB
testcase_09 AC 30 ms
10,008 KB
testcase_10 WA -
testcase_11 AC 30 ms
10,008 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 29 ms
10,008 KB
testcase_17 AC 30 ms
10,008 KB
testcase_18 AC 29 ms
10,008 KB
testcase_19 WA -
testcase_20 AC 29 ms
10,008 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 29 ms
10,008 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 30 ms
10,008 KB
testcase_28 AC 30 ms
10,008 KB
testcase_29 AC 30 ms
10,008 KB
testcase_30 AC 29 ms
10,008 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 30 ms
10,008 KB
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
dic = {}

for i in s:
    dic.setdefault(i,0)
    dic[i]+=1
    if dic[i]==3:
        print("Impossible")
        exit(0)

cnt = 0
ans = ""
for k,n in dic.items():
    if n==1:
        print(ans)
        break
0