結果

問題 No.164 ちっちゃくないよ!!
ユーザー dangodango
提出日時 2023-06-13 16:56:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 48 ms / 2,000 ms
コード長 134 bytes
コンパイル時間 605 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 65,012 KB
最終ジャッジ日時 2024-06-22 02:20:00
合計ジャッジ時間 1,478 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,308 KB
testcase_01 AC 33 ms
51,760 KB
testcase_02 AC 33 ms
52,512 KB
testcase_03 AC 33 ms
52,340 KB
testcase_04 AC 31 ms
52,576 KB
testcase_05 AC 46 ms
64,592 KB
testcase_06 AC 46 ms
65,012 KB
testcase_07 AC 40 ms
60,524 KB
testcase_08 AC 47 ms
64,460 KB
testcase_09 AC 48 ms
64,536 KB
testcase_10 AC 32 ms
52,836 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