結果

問題 No.164 ちっちゃくないよ!!
ユーザー ぴろずぴろず
提出日時 2015-03-12 23:27:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 311 ms / 2,000 ms
コード長 534 bytes
コンパイル時間 2,175 ms
コンパイル使用メモリ 75,020 KB
実行使用メモリ 48,320 KB
最終ジャッジ日時 2024-10-13 13:59:00
合計ジャッジ時間 4,799 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,264 KB
testcase_01 AC 127 ms
41,592 KB
testcase_02 AC 116 ms
40,932 KB
testcase_03 AC 118 ms
41,460 KB
testcase_04 AC 124 ms
41,716 KB
testcase_05 AC 311 ms
48,148 KB
testcase_06 AC 293 ms
48,004 KB
testcase_07 AC 237 ms
47,964 KB
testcase_08 AC 281 ms
48,320 KB
testcase_09 AC 284 ms
48,200 KB
testcase_10 AC 140 ms
43,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no164;

import java.math.BigInteger;
import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		BigInteger min = null;
		for(int i=0;i<n;i++) {
			String s = sc.next();
			for(int radix=2;radix<=36;radix++) {
				try {
					BigInteger val = new BigInteger(s, radix);
					if (min == null) {
						min = val;
					}else{
						min = min.min(val);
					}
				} catch (Exception e) {
				}

			}
		}
		System.out.println(min);
	}

}
0