結果

問題 No.164 ちっちゃくないよ!!
ユーザー tentententen
提出日時 2020-10-14 11:56:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 190 ms / 2,000 ms
コード長 815 bytes
コンパイル時間 2,406 ms
コンパイル使用メモリ 74,624 KB
実行使用メモリ 42,124 KB
最終ジャッジ日時 2024-07-20 19:03:09
合計ジャッジ時間 5,138 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
41,064 KB
testcase_01 AC 139 ms
41,020 KB
testcase_02 AC 138 ms
41,232 KB
testcase_03 AC 137 ms
41,016 KB
testcase_04 AC 142 ms
41,364 KB
testcase_05 AC 190 ms
42,124 KB
testcase_06 AC 187 ms
41,884 KB
testcase_07 AC 179 ms
41,528 KB
testcase_08 AC 187 ms
41,904 KB
testcase_09 AC 185 ms
41,696 KB
testcase_10 AC 142 ms
41,372 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++) {
    	    min = Math.min(min, getValue(sc.next().toCharArray()));
    	}
    	System.out.print(min);
	}

	static long getValue(char[] arr) {
	    char max = '0';
	    for (char c : arr) {
	        max = (char)Math.max(max, c);
	    }
	    int idxed = 0;
	    if (max >= 'A') {
	        idxed = 10 + max - 'A';
	    } else {
	        idxed = max - '0';
	    }
	    idxed++;
	    long value = 0;
	    for (char c : arr) {
	        value *= idxed;
	        if (c >= 'A') {
	            value += 10 + c - 'A';
	        } else {
	            value += c - '0';
	        }
	    }
	    return value;
	}
}
0