結果

問題 No.164 ちっちゃくないよ!!
ユーザー togatogatogatoga
提出日時 2015-09-10 19:12:03
言語 Python2
(2.7.18)
結果
RE  
実行時間 -
コード長 528 bytes
コンパイル時間 74 ms
コンパイル使用メモリ 6,672 KB
実行使用メモリ 6,596 KB
最終ジャッジ日時 2023-09-26 10:26:06
合計ジャッジ時間 1,718 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 AC 16 ms
6,564 KB
testcase_03 AC 13 ms
6,552 KB
testcase_04 RE -
testcase_05 WA -
testcase_06 AC 294 ms
6,440 KB
testcase_07 AC 134 ms
6,376 KB
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 26 ms
6,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
N = input()
V = []
bases = []
for i in range(N):
    V.append(raw_input())

for i in range(2, 10):
    bases.append(i)
    
for i in range(ord('A'), ord('Z') + 1):
    bases.append(chr(i))
    
res = 1 << 80
for x in V:
    counter = Counter(x)
    for index,base in enumerate(bases):
        ok = True
        for y in map(str, bases[index:]):
            if (counter[y] > 0):
                ok = False
        if (ok):
            res = min(res, int(x, ord(base) - ord('A') + 10))


print res
0