結果

問題 No.164 ちっちゃくないよ!!
ユーザー noriocnorioc
提出日時 2024-07-02 22:24:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 232 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 62,848 KB
最終ジャッジ日時 2024-07-02 22:25:00
合計ジャッジ時間 1,362 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,328 KB
testcase_01 AC 34 ms
51,840 KB
testcase_02 AC 34 ms
51,712 KB
testcase_03 AC 33 ms
51,200 KB
testcase_04 AC 36 ms
51,840 KB
testcase_05 AC 54 ms
62,464 KB
testcase_06 AC 55 ms
62,720 KB
testcase_07 AC 51 ms
59,264 KB
testcase_08 AC 60 ms
62,464 KB
testcase_09 AC 62 ms
62,848 KB
testcase_10 AC 42 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

INF = 1 << 64
N = int(input())
V = [input() for _ in range(N)]

ans = INF
for v in V:
    c = max(v)
    if c.isdigit():
        b = int(c) + 1
    else:
        b = ord(c) - ord('A') + 11

    ans = min(ans, int(v, b))

print(ans)
0