結果

問題 No.587 七対子
ユーザー ikedakojiroikedakojiro
提出日時 2017-11-28 01:03:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 473 bytes
コンパイル時間 75 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,652 KB
最終ジャッジ日時 2024-05-05 14:03:32
合計ジャッジ時間 19,703 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 459 ms
44,388 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 465 ms
44,260 KB
testcase_06 AC 457 ms
44,520 KB
testcase_07 AC 464 ms
44,396 KB
testcase_08 AC 467 ms
44,260 KB
testcase_09 AC 455 ms
43,976 KB
testcase_10 WA -
testcase_11 AC 454 ms
44,132 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 462 ms
44,392 KB
testcase_16 AC 462 ms
44,096 KB
testcase_17 AC 453 ms
44,268 KB
testcase_18 AC 462 ms
44,516 KB
testcase_19 AC 487 ms
44,520 KB
testcase_20 AC 463 ms
44,392 KB
testcase_21 AC 460 ms
44,520 KB
testcase_22 AC 452 ms
44,140 KB
testcase_23 AC 461 ms
44,012 KB
testcase_24 AC 455 ms
44,260 KB
testcase_25 AC 461 ms
44,136 KB
testcase_26 AC 455 ms
44,392 KB
testcase_27 AC 457 ms
44,376 KB
testcase_28 AC 452 ms
44,520 KB
testcase_29 AC 445 ms
44,136 KB
testcase_30 AC 451 ms
44,260 KB
testcase_31 AC 465 ms
44,264 KB
testcase_32 WA -
testcase_33 AC 456 ms
44,000 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