結果
問題 | No.164 ちっちゃくないよ!! |
ユーザー | kenkoooo |
提出日時 | 2015-03-12 23:56:49 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 167 ms / 2,000 ms |
コード長 | 993 bytes |
コンパイル時間 | 1,911 ms |
コンパイル使用メモリ | 77,544 KB |
実行使用メモリ | 41,972 KB |
最終ジャッジ日時 | 2024-10-13 14:10:04 |
合計ジャッジ時間 | 4,040 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 109 ms
41,336 KB |
testcase_01 | AC | 124 ms
41,292 KB |
testcase_02 | AC | 123 ms
40,784 KB |
testcase_03 | AC | 120 ms
41,128 KB |
testcase_04 | AC | 110 ms
41,124 KB |
testcase_05 | AC | 163 ms
41,972 KB |
testcase_06 | AC | 166 ms
41,464 KB |
testcase_07 | AC | 143 ms
41,216 KB |
testcase_08 | AC | 167 ms
41,848 KB |
testcase_09 | AC | 165 ms
41,760 KB |
testcase_10 | AC | 119 ms
40,244 KB |
ソースコード
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int N = sc.nextInt(); long min = Long.MAX_VALUE; int[] shinsu = new int[91]; for (int i = 0; i < shinsu.length; i++) { if (i <= 57) { shinsu[i] = i - 47; } else { shinsu[i] = i - 54; } } for (int n = 0; n < N; n++) { int max = 0; char[] input = sc.next().toCharArray(); /* * char の 0~9はintの48~57 A~Zは65~90 */ for (int i = 0; i < input.length; i++) { max = Math.max(max, (int) input[i]); } int shinho = shinsu[max]; long ans = 0; long now = 1; for (int i = 0; i < input.length; i++) { char c = input[input.length - 1 - i]; int conv = convert(c); ans += conv * now; now *= shinho; } min = Math.min(min, ans); } System.out.println(min); } static int convert(char c) { int n = (int) c; if (n <= 57) { n -= 48; } else { n -= 55; } return n; } }