結果

問題 No.164 ちっちゃくないよ!!
ユーザー dangodango
提出日時 2023-06-13 16:56:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 91 ms / 2,000 ms
コード長 134 bytes
コンパイル時間 629 ms
コンパイル使用メモリ 86,728 KB
実行使用メモリ 75,952 KB
最終ジャッジ日時 2023-09-04 02:25:06
合計ジャッジ時間 2,608 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
71,432 KB
testcase_01 AC 72 ms
71,248 KB
testcase_02 AC 74 ms
71,456 KB
testcase_03 AC 73 ms
71,404 KB
testcase_04 AC 73 ms
71,308 KB
testcase_05 AC 90 ms
75,704 KB
testcase_06 AC 91 ms
75,800 KB
testcase_07 AC 82 ms
75,284 KB
testcase_08 AC 91 ms
75,952 KB
testcase_09 AC 91 ms
75,808 KB
testcase_10 AC 75 ms
71,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
X = 36 ** 1000
for _ in range(N):
    S = input()
    M = int(max(S), 36) + 1
    X = min(X, int(S, M))
print(X)    
0