結果
問題 | No.164 ちっちゃくないよ!! |
ユーザー | 0w1 |
提出日時 | 2016-11-23 21:49:03 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 487 bytes |
コンパイル時間 | 1,610 ms |
コンパイル使用メモリ | 168,528 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-27 10:22:47 |
合計ジャッジ時間 | 2,874 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
ソースコード
#include <bits/stdc++.h> using namespace std; signed main(){ int N; cin >> N; vector< string > A( N ); for( int i = 0; i < N; ++i ) cin >> A[ i ]; long long ans = 0x3f3f3f3f3f3f3f3fLL; for( int i = 0; i < N; ++i ){ int base = 0; for( int j = 0; j < A[ i ].size(); ++j ) base = max( base, A[ i ][ j ] <= '9' ? A[ i ][ j ] - '0' + 1 : A[ i ][ j ] - 'A' + 10 ); ans = min( ans, stoll( A[ i ], nullptr, base ) ); } cout << ans << endl; return 0; }