結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,704 KB
testcase_01 AC 41 ms
52,684 KB
testcase_02 AC 40 ms
52,484 KB
testcase_03 AC 40 ms
53,132 KB
testcase_04 AC 43 ms
53,132 KB
testcase_05 WA -
testcase_06 AC 58 ms
64,400 KB
testcase_07 AC 53 ms
60,296 KB
testcase_08 AC 69 ms
63,592 KB
testcase_09 AC 63 ms
64,512 KB
testcase_10 AC 41 ms
52,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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