結果
問題 | No.164 ちっちゃくないよ!! |
ユーザー | spacia |
提出日時 | 2016-01-06 23:04:23 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 82 ms / 2,000 ms |
コード長 | 871 bytes |
コンパイル時間 | 2,118 ms |
コンパイル使用メモリ | 77,128 KB |
実行使用メモリ | 38,076 KB |
最終ジャッジ日時 | 2024-10-14 13:26:59 |
合計ジャッジ時間 | 3,410 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 53 ms
37,044 KB |
testcase_01 | AC | 53 ms
36,936 KB |
testcase_02 | AC | 52 ms
36,728 KB |
testcase_03 | AC | 52 ms
36,976 KB |
testcase_04 | AC | 52 ms
36,768 KB |
testcase_05 | AC | 76 ms
38,076 KB |
testcase_06 | AC | 82 ms
37,528 KB |
testcase_07 | AC | 60 ms
36,960 KB |
testcase_08 | AC | 65 ms
37,688 KB |
testcase_09 | AC | 70 ms
37,340 KB |
testcase_10 | AC | 54 ms
36,916 KB |
ソースコード
import java.io.*; import java.util.*; class Main { public static void out (Object o) { System.out.println(o); } public static long getDecimal (String v) { long ret = 0; String s = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"; int max = 0; for (int i = 0; i < v.length(); i++) { max = Math.max(max , (int)v.charAt(i)); } long k = 1 , d = s.indexOf((char)max) + 1; //out(d); for (int i = v.length() - 1; i >= 0; i--) { ret += s.indexOf(v.charAt(i)) * k; k *= d; } return ret; } public static void main (String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int n = Integer.parseInt(br.readLine()); long ans = Long.MAX_VALUE; for (int i = 0; i < n; i++) { String v = br.readLine(); ans = Math.min(ans , getDecimal(v)); } out(ans); } }