結果
問題 | No.164 ちっちゃくないよ!! |
ユーザー |
![]() |
提出日時 | 2015-11-19 13:19:39 |
言語 | Python2 (2.7.18) |
結果 |
AC
|
実行時間 | 18 ms / 2,000 ms |
コード長 | 270 bytes |
コンパイル時間 | 209 ms |
コンパイル使用メモリ | 6,912 KB |
実行使用メモリ | 6,400 KB |
最終ジャッジ日時 | 2024-10-13 14:18:55 |
合計ジャッジ時間 | 897 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 11 |
ソースコード
N = input() smallest = 10**20 for loop in xrange(N): S = raw_input() base = 36 while True: try: int(S, base) base -= 1 except: break base += 1 smallest = min(smallest, int(S, base)) print smallest