結果

問題 No.164 ちっちゃくないよ!!
コンテスト
ユーザー cologne
提出日時 2025-12-12 18:49:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 774 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 428 ms
コンパイル使用メモリ 82,840 KB
実行使用メモリ 75,532 KB
最終ジャッジ日時 2025-12-12 18:49:56
合計ジャッジ時間 1,706 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 5 WA * 6
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

import string
import sys
from typing import Generator, List, Tuple


def input(): return sys.stdin.readline().rstrip('\n')


def cvt(x, b):
    a = 0
    for i in x:
        a = a * b + (string.digits + string.ascii_uppercase)[:b].index(i)
    return a


def main():
    n = int(input())
    a = [input() for _ in range(n)]
    for d in range(2, 37):
        try:
            return min(cvt(x, d) for x in a)
        except ValueError:
            pass


if __name__ == '__main__':
    ret = main()


    def out(x):
        if isinstance(x, List) or isinstance(x, Tuple):
            print(*x)
        else:
            print(x)


    if ret is None:
        pass
    elif isinstance(ret, Generator):
        for val in ret:
            out(val)
    else:
        out(ret)
0