結果

問題 No.548 国士無双
ユーザー brthyyjpbrthyyjp
提出日時 2020-07-10 09:44:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 365 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 55,308 KB
最終ジャッジ日時 2024-10-09 21:00:36
合計ジャッジ時間 2,079 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,860 KB
testcase_01 AC 45 ms
55,308 KB
testcase_02 AC 44 ms
53,548 KB
testcase_03 AC 42 ms
54,160 KB
testcase_04 AC 44 ms
54,060 KB
testcase_05 AC 44 ms
54,128 KB
testcase_06 AC 43 ms
53,852 KB
testcase_07 AC 44 ms
53,704 KB
testcase_08 AC 42 ms
53,284 KB
testcase_09 AC 43 ms
53,928 KB
testcase_10 AC 43 ms
53,956 KB
testcase_11 AC 43 ms
53,976 KB
testcase_12 AC 44 ms
54,660 KB
testcase_13 AC 43 ms
53,896 KB
testcase_14 AC 43 ms
53,620 KB
testcase_15 AC 44 ms
54,872 KB
testcase_16 AC 44 ms
54,456 KB
testcase_17 AC 43 ms
54,812 KB
testcase_18 AC 44 ms
54,148 KB
testcase_19 AC 44 ms
53,552 KB
testcase_20 AC 44 ms
54,032 KB
testcase_21 AC 44 ms
54,308 KB
testcase_22 AC 43 ms
54,228 KB
testcase_23 AC 43 ms
54,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = str(input())
X = [0]*13
for i in range(len(s)):
    X[ord(s[i])-ord('a')] += 1

import copy
Y = copy.copy(X)
Y.sort()
p1 = [0]+[1]*11+[2]
p2 = [1]*13
if Y == p1:
    for i in range(13):
        if X[i] == 0:
            print(chr(i+ord('a')))
            exit()
if Y == p2:
    for i in range(13):
        print(chr(i+ord('a')))
    exit()

print('Impossible')
0