結果
問題 | No.164 ちっちゃくないよ!! |
ユーザー | kou6839 |
提出日時 | 2015-03-13 00:31:01 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 167 ms / 2,000 ms |
コード長 | 596 bytes |
コンパイル時間 | 1,877 ms |
コンパイル使用メモリ | 74,296 KB |
実行使用メモリ | 41,736 KB |
最終ジャッジ日時 | 2024-10-13 14:11:13 |
合計ジャッジ時間 | 3,995 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 103 ms
39,300 KB |
testcase_01 | AC | 106 ms
40,880 KB |
testcase_02 | AC | 109 ms
39,600 KB |
testcase_03 | AC | 116 ms
41,136 KB |
testcase_04 | AC | 109 ms
41,540 KB |
testcase_05 | AC | 159 ms
41,668 KB |
testcase_06 | AC | 167 ms
41,736 KB |
testcase_07 | AC | 148 ms
40,840 KB |
testcase_08 | AC | 165 ms
41,556 KB |
testcase_09 | AC | 157 ms
41,680 KB |
testcase_10 | AC | 126 ms
41,332 KB |
ソースコード
import java.beans.IntrospectionException; import java.util.*; class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); long ans = Long.MAX_VALUE; for(int i=0;i<n;i++){ long temp=0; String string = sc.next(); int max=49; for(int j=0;j<string.length();j++){ max=Math.max(max,(int)string.charAt(j)); } if(max<60){ max=max-48+1; }else{ max=max-55+1; } for(int j=0;j<string.length();j++){ temp=Long.parseLong(string, max); } ans=Math.min(ans, temp); } System.out.println(ans); } }