結果

問題 No.164 ちっちゃくないよ!!
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-28 15:37:58
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 884 bytes
コンパイル時間 1,914 ms
コンパイル使用メモリ 77,476 KB
実行使用メモリ 41,884 KB
最終ジャッジ日時 2024-11-27 12:39:45
合計ジャッジ時間 4,089 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
41,112 KB
testcase_01 AC 110 ms
40,248 KB
testcase_02 AC 120 ms
41,128 KB
testcase_03 AC 105 ms
40,160 KB
testcase_04 AC 108 ms
40,088 KB
testcase_05 AC 160 ms
41,884 KB
testcase_06 AC 159 ms
41,604 KB
testcase_07 AC 147 ms
41,528 KB
testcase_08 AC 156 ms
41,704 KB
testcase_09 AC 161 ms
41,668 KB
testcase_10 WA -
権限があれば一括ダウンロードができます

ソースコード

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++){
            String S = sc.next();
            int L=S.length();
            int [] u = new int [L];
            int max=0;
            for(int j=0; j<L; j++){
                u[j] = S.charAt(j);
                if(u[j]>='0' && u[j]<='9'){
                    u[j]-='0';
                }else{
                    u[j]=u[j]-'A'+10;
                }
                max=Math.max(max,u[j]);
            }
            long num=0;
            for(int j=0; j<L; j++){
                num+=(long)Math.pow(max+1,L-1-j)*u[j];
            }
            if(num>0){
                min=Math.min(min,num);
            }
        }
        System.out.println(min);
    }
}
0