結果

問題 No.587 七対子
ユーザー ikedakojiroikedakojiro
提出日時 2017-11-28 01:03:17
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 473 bytes
コンパイル時間 91 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 92,980 KB
最終ジャッジ日時 2024-11-27 11:58:51
合計ジャッジ時間 19,751 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 465 ms
43,880 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 464 ms
43,884 KB
testcase_06 AC 465 ms
43,880 KB
testcase_07 AC 453 ms
44,128 KB
testcase_08 AC 465 ms
44,008 KB
testcase_09 AC 453 ms
43,876 KB
testcase_10 WA -
testcase_11 AC 451 ms
44,008 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 457 ms
43,888 KB
testcase_16 AC 460 ms
44,264 KB
testcase_17 AC 452 ms
43,876 KB
testcase_18 AC 462 ms
44,036 KB
testcase_19 AC 462 ms
44,000 KB
testcase_20 AC 460 ms
43,880 KB
testcase_21 AC 457 ms
44,132 KB
testcase_22 AC 463 ms
44,276 KB
testcase_23 AC 464 ms
43,752 KB
testcase_24 AC 451 ms
44,004 KB
testcase_25 AC 458 ms
43,752 KB
testcase_26 AC 460 ms
44,512 KB
testcase_27 AC 463 ms
43,784 KB
testcase_28 AC 458 ms
43,748 KB
testcase_29 AC 461 ms
44,264 KB
testcase_30 AC 442 ms
44,140 KB
testcase_31 AC 458 ms
44,260 KB
testcase_32 WA -
testcase_33 AC 455 ms
43,884 KB
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python
import fileinput
import itertools
import numpy as np
from collections import Counter


txt_input = []

txt_input = input()

S = list(txt_input[0])

S.sort()

#print(S)
count = 0
lst =[]
letter = ''

S_unique = list(set(S))
if len(S) - len(S_unique) == 6:
    dct = Counter(S)
    search_letter = 1
    for name, age in dct.items():
        if age == search_letter:
            print(name)
        else:
            break
else:
    print('Impossible')
0