結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,456 KB
testcase_01 AC 35 ms
51,712 KB
testcase_02 AC 35 ms
51,200 KB
testcase_03 AC 35 ms
52,224 KB
testcase_04 AC 34 ms
52,096 KB
testcase_05 WA -
testcase_06 AC 54 ms
63,616 KB
testcase_07 AC 46 ms
60,160 KB
testcase_08 AC 56 ms
63,360 KB
testcase_09 AC 52 ms
62,592 KB
testcase_10 AC 35 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

INF = 1 << 62
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