結果
| 問題 | No.164 ちっちゃくないよ!! |
| コンテスト | |
| ユーザー |
kohaku_kohaku
|
| 提出日時 | 2016-11-28 13:39:18 |
| 言語 | Java (openjdk 23) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 843 bytes |
| 記録 | |
| コンパイル時間 | 1,973 ms |
| コンパイル使用メモリ | 74,208 KB |
| 実行使用メモリ | 50,600 KB |
| 最終ジャッジ日時 | 2024-11-27 12:36:39 |
| 合計ジャッジ時間 | 4,204 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 10 WA * 1 |
ソースコード
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];
}
min=Math.min(min,num);
}
System.out.println(min);
}
}
kohaku_kohaku