結果
問題 | No.164 ちっちゃくないよ!! |
ユーザー | chiho_miyako |
提出日時 | 2015-04-19 20:51:49 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 175 ms / 2,000 ms |
コード長 | 828 bytes |
コンパイル時間 | 2,526 ms |
コンパイル使用メモリ | 75,648 KB |
実行使用メモリ | 54,532 KB |
最終ジャッジ日時 | 2024-10-13 14:14:17 |
合計ジャッジ時間 | 3,915 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 106 ms
52,772 KB |
testcase_01 | AC | 117 ms
53,904 KB |
testcase_02 | AC | 109 ms
53,068 KB |
testcase_03 | AC | 117 ms
53,688 KB |
testcase_04 | AC | 121 ms
54,196 KB |
testcase_05 | AC | 160 ms
54,532 KB |
testcase_06 | AC | 175 ms
54,308 KB |
testcase_07 | AC | 162 ms
54,164 KB |
testcase_08 | AC | 165 ms
54,288 KB |
testcase_09 | AC | 159 ms
54,408 KB |
testcase_10 | AC | 121 ms
54,092 KB |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) throws Exception { Scanner koko = new Scanner(System.in); int n = koko.nextInt(); String[] moto = new String[n]; long[] chicchai = new long[n]; for(int i=0; i<n; i++){ moto[i] = koko.next(); chicchai[i] = parse(moto[i], 'Z', 36); } Arrays.sort(chicchai); System.out.println(chicchai[0]); } static long parse(String moto, char sinsu, int sin){ String s = String.valueOf(sinsu); if(moto.indexOf(s)!=-1){ long a = Long.parseLong(moto, sin); return a; }else if(sinsu=='A'){ return parse(moto, '9', 10); }else{ return parse(moto, (char)(sinsu-1), sin-1); } } }