結果

問題 No.164 ちっちゃくないよ!!
ユーザー jp_stejp_ste
提出日時 2015-03-16 07:18:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 170 ms / 2,000 ms
コード長 728 bytes
コンパイル時間 2,498 ms
コンパイル使用メモリ 76,376 KB
実行使用メモリ 42,248 KB
最終ジャッジ日時 2024-10-13 14:12:42
合計ジャッジ時間 4,122 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
41,608 KB
testcase_01 AC 117 ms
41,068 KB
testcase_02 AC 106 ms
41,240 KB
testcase_03 AC 107 ms
41,560 KB
testcase_04 AC 121 ms
41,496 KB
testcase_05 AC 170 ms
41,908 KB
testcase_06 AC 162 ms
41,792 KB
testcase_07 AC 155 ms
41,592 KB
testcase_08 AC 153 ms
42,216 KB
testcase_09 AC 164 ms
42,248 KB
testcase_10 AC 124 ms
41,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public 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++) {
			String stringV = sc.next();
			Long decimalV = Long.parseLong(stringV, getMinRadix(stringV));
			ans = Math.min(decimalV, ans);
		}
		System.out.println(ans);
	}
	
	static int getMinRadix(String str) {
		int ret = 0;
		for(int i=0; i<str.length(); i++) {
			ret = Math.max(str.charAt(i), ret);
		}
		
		if(ret >= '0' && ret <= '9') {
			return ret - '0' + 1;
			
		} else if(ret >= 'A' && ret <= 'Z') {
			return ret - 'A' + 10 + 1;
		
		} else {
			throw new IllegalArgumentException("ret:"+ret);
		}	
	}
}
0