結果

問題 No.164 ちっちゃくないよ!!
ユーザー htensaihtensai
提出日時 2019-11-27 11:38:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 178 ms / 2,000 ms
コード長 683 bytes
コンパイル時間 2,573 ms
コンパイル使用メモリ 83,500 KB
実行使用メモリ 42,088 KB
最終ジャッジ日時 2024-11-07 23:12:57
合計ジャッジ時間 5,016 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
40,100 KB
testcase_01 AC 128 ms
41,052 KB
testcase_02 AC 126 ms
41,168 KB
testcase_03 AC 127 ms
41,324 KB
testcase_04 AC 129 ms
40,928 KB
testcase_05 AC 178 ms
41,780 KB
testcase_06 AC 177 ms
41,692 KB
testcase_07 AC 150 ms
41,476 KB
testcase_08 AC 170 ms
42,088 KB
testcase_09 AC 174 ms
41,968 KB
testcase_10 AC 131 ms
41,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args)  {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		long min = Long.MAX_VALUE;
		for (int i = 0; i < n; i++) {
		    char[] arr = sc.next().toCharArray();
		    int max = 0;
		    for (char c : arr) {
		        max = Math.max(max, charToInt(c));
		    }
		    max++;
		    long value = 0;
		    for (char c : arr) {
		        value *= max;
		        value += charToInt(c);
		    }
		    min = Math.min(min, value);
		}
		System.out.println(min);
	}
	
	static int charToInt(char c) {
	    if (c <= '9') {
	        return c - '0';
	    } else {
	        return c - 'A' + 10;
	    }
	}
}
0