結果
問題 | No.2014 Eggs Hatching |
ユーザー |
|
提出日時 | 2025-03-31 19:57:02 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 275 bytes |
コンパイル時間 | 1,051 ms |
コンパイル使用メモリ | 91,580 KB |
実行使用メモリ | 7,324 KB |
最終ジャッジ日時 | 2025-03-31 19:57:04 |
合計ジャッジ時間 | 2,241 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 18 |
ソースコード
#include <iostream>#include <cstdint>#include <array>#include <algorithm>using namespace std;int main(){cin.tie(nullptr);ios::sync_with_stdio(false);array<uint32_t, 3> a;cin >> a[0] >> a[1] >> a[2];cout << min(min(a[0], a[1]), a[2]) << '\n';return 0;}