結果
問題 | No.164 ちっちゃくないよ!! |
ユーザー | 41Toame |
提出日時 | 2018-09-07 20:49:23 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 1,137 bytes |
コンパイル時間 | 1,309 ms |
コンパイル使用メモリ | 161,756 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-29 02:59:18 |
合計ジャッジ時間 | 2,149 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 1 ms
6,820 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | AC | 2 ms
6,820 KB |
testcase_08 | AC | 2 ms
6,816 KB |
testcase_09 | AC | 2 ms
6,816 KB |
testcase_10 | AC | 2 ms
6,816 KB |
ソースコード
#include "bits/stdc++.h" using namespace std; #define ll long long int #define rep(i,n) for( int i = 0; i < n; i++ ) #define rrep(i,n) for( int i = n; i >= 0; i-- ) #define REP(i,s,t) for( int i = s; i <= t; i++ ) #define RREP(i,s,t) for( int i = s; i >= t; i-- ) #define dump(x) cerr << #x << " = " << (x) << endl; #define INF 2000000000 #define mod 1000000007 #define INF2 5000000000000000000 #define int long long int calc1(int base, string num) { int ret = 0; int times = 1; RREP(i, num.length() - 1, 0) { if (num[i] <= '9') ret += (num[i] - '0') * times; else ret += (num[i] - 'A' + 10) * times; times *= base; } return ret; } signed main(void) { cin.tie(0); ios::sync_with_stdio(false); int N; cin >> N; string S[1010]; rep(i, N) cin >> S[i]; int ans = INF2; rep(i, N) { char maxc = '0'; rep(j, S[i].length()) { maxc = max(maxc, S[i][j]); } int minx = 2; if (maxc <= '9') { minx = max(minx, (int)maxc - '0' + 1); } else { minx = maxc - 'A' + 11; } //cout << minx << endl; REP(j, minx, 36) { ans = min(ans, calc1(j, S[i])); } } cout << ans << endl; return 0; }