結果
問題 | No.164 ちっちゃくないよ!! |
ユーザー | izryt(趣味) |
提出日時 | 2016-01-18 03:08:54 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 643 bytes |
コンパイル時間 | 1,320 ms |
コンパイル使用メモリ | 160,552 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-14 13:28:49 |
合計ジャッジ時間 | 1,965 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; string V[1000]; long long f1(string a) { int b; char maxc = 0; for (int i = 0; i < a.size(); ++i) maxc = max(maxc, a[i]); b = (isdigit(maxc) ? maxc - '0' + 1 : maxc - 'A' + 11); ll c = 1; ll res = 0; for (int i = a.size() - 1; i >= 0; --i) { res += (isdigit(a[i]) ? a[i] - '0' : a[i] - 'A' + 10) * c; c *= b; } return res; } int main() { int N; cin >> N; for (int i = 0; i < N; ++i) cin >> V[i]; ll mi = LLONG_MAX; for (int i = 0; i < N; ++i) mi = min(mi, f1(V[i])); cout << mi << endl; }