結果
問題 |
No.164 ちっちゃくないよ!!
|
ユーザー |
|
提出日時 | 2016-11-23 21:45:36 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 319 bytes |
コンパイル時間 | 1,379 ms |
コンパイル使用メモリ | 167,884 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-27 10:21:51 |
合計ジャッジ時間 | 3,045 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | WA * 3 RE * 8 |
ソースコード
#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 ) ans = min( ans, stoll( A[ i ], nullptr, 0 ) ); cout << ans << endl; return 0; }