結果

問題 No.164 ちっちゃくないよ!!
ユーザー kichirb3kichirb3
提出日時 2018-03-22 17:27:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 616 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-06-24 20:08:24
合計ジャッジ時間 1,287 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,880 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 85 ms
10,752 KB
testcase_06 AC 67 ms
10,752 KB
testcase_07 AC 45 ms
10,752 KB
testcase_08 AC 66 ms
10,752 KB
testcase_09 AC 64 ms
10,752 KB
testcase_10 AC 30 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding: utf-8 -*-
"""
No.164 ちっちゃくないよ!!
https://yukicoder.me/problems/no/164

"""
import sys
from sys import stdin
input = stdin.readline


def solve(V):
    ans = float('inf')
    for v in V:
        v = v.lstrip('0')
        for x in range(2, 36+1):
            try:
                t = int(v, x)
                ans = min(ans, t)
                break
            except ValueError:
                pass
    return ans


def main(args):
    N = int(input())
    V = [input().strip() for _ in range(N)]
    ans = solve(V)
    print(ans)


if __name__ == '__main__':
    main(sys.argv[1:])
0