結果

問題 No.164 ちっちゃくないよ!!
ユーザー luckseedluckseed
提出日時 2015-03-13 17:37:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 189 ms / 2,000 ms
コード長 612 bytes
コンパイル時間 2,567 ms
コンパイル使用メモリ 89,124 KB
実行使用メモリ 55,140 KB
最終ジャッジ日時 2024-10-13 14:11:34
合計ジャッジ時間 4,457 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
52,860 KB
testcase_01 AC 110 ms
53,228 KB
testcase_02 AC 120 ms
54,024 KB
testcase_03 AC 119 ms
54,184 KB
testcase_04 AC 121 ms
54,200 KB
testcase_05 AC 185 ms
54,888 KB
testcase_06 AC 189 ms
54,516 KB
testcase_07 AC 168 ms
54,436 KB
testcase_08 AC 187 ms
55,104 KB
testcase_09 AC 179 ms
55,140 KB
testcase_10 AC 132 ms
54,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.nio.*;
import java.nio.file.*;
import java.util.*;
import java.util.concurrent.*;
import java.math.*;
import java.util.stream.*;

public class Main {
	public static void main(String... args) throws Throwable {
		Scanner in = new Scanner(System.in);
		
		ArrayList<Long> list = new ArrayList<>();
		
		int cnt = in.nextInt();
		for (int i = 0; i < cnt; i++) {
			String str = in.next();
			list.add(Long.parseLong(str, str.codePoints().map(c -> (int)'A' <= c ? (10 + (c - (int)'A') + 1) : (c - (int)'0' + 1)).max().getAsInt()));
		}
		System.out.println(Collections.min(list));
	}
}
0