結果
問題 | No.164 ちっちゃくないよ!! |
ユーザー | bluemegane |
提出日時 | 2020-09-11 20:04:57 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 22 ms / 2,000 ms |
コード長 | 1,071 bytes |
コンパイル時間 | 913 ms |
コンパイル使用メモリ | 105,600 KB |
実行使用メモリ | 17,920 KB |
最終ジャッジ日時 | 2024-06-08 01:31:13 |
合計ジャッジ時間 | 1,706 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 20 ms
17,920 KB |
testcase_01 | AC | 21 ms
17,792 KB |
testcase_02 | AC | 22 ms
17,664 KB |
testcase_03 | AC | 21 ms
17,536 KB |
testcase_04 | AC | 21 ms
17,664 KB |
testcase_05 | AC | 22 ms
17,792 KB |
testcase_06 | AC | 22 ms
17,792 KB |
testcase_07 | AC | 21 ms
17,664 KB |
testcase_08 | AC | 21 ms
17,664 KB |
testcase_09 | AC | 21 ms
17,664 KB |
testcase_10 | AC | 20 ms
17,920 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System.Collections.Generic; using static System.Math; using System; public class Hello { public static Dictionary<char, int> d; static void Main() { var s = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"; d = new Dictionary<char, int>(); for (int i = 0; i < 36; i++) d[s[i]] = i; var n = int.Parse(Console.ReadLine().Trim()); var amin = long.MaxValue; for (int i = 0; i < n; i++) { var a = Console.ReadLine().Trim(); var maxc = getMaxc(a); amin = Min(amin, calc(a, maxc + 1)); } Console.WriteLine(amin); } static long calc(string s, int n) { var s2 = s.ToCharArray(); Array.Reverse(s2); var res = 0L; var sL = s.Length; var ex = 1L; foreach (var x in s2) { res += ex * d[x]; ex *= n; } return res; } static int getMaxc(string s) { var res = 0; foreach (var x in s) res = Max(res, d[x]); return res; } }