結果
問題 | No.164 ちっちゃくないよ!! |
ユーザー | 0w1 |
提出日時 | 2016-11-23 21:45:36 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.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 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
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 ) ans = min( ans, stoll( A[ i ], nullptr, 0 ) ); cout << ans << endl; return 0; }