結果
問題 | No.164 ちっちゃくないよ!! |
ユーザー | kohaku_kohaku |
提出日時 | 2016-11-28 14:14:31 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 774 bytes |
コンパイル時間 | 1,967 ms |
コンパイル使用メモリ | 77,720 KB |
実行使用メモリ | 42,068 KB |
最終ジャッジ日時 | 2024-11-27 12:37:28 |
合計ジャッジ時間 | 4,078 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 110 ms
41,184 KB |
testcase_01 | AC | 105 ms
40,392 KB |
testcase_02 | WA | - |
testcase_03 | AC | 115 ms
41,244 KB |
testcase_04 | AC | 107 ms
40,092 KB |
testcase_05 | AC | 157 ms
41,996 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int N = sc.nextInt(); String [] S = new String [N]; for(int i=0; i<N; i++){ S[i] = sc.next(); } Arrays.sort(S); int L=S[0].length(); int [] u = new int [L]; int max=0; for(int j=0; j<L; j++){ u[j] = S[0].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]; } System.out.println(num); } }