結果
| 問題 | No.2014 Eggs Hatching |
| コンテスト | |
| ユーザー |
tnakao0123
|
| 提出日時 | 2022-07-23 15:40:31 |
| 言語 | C++14 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 378 bytes |
| 記録 | |
| コンパイル時間 | 447 ms |
| コンパイル使用メモリ | 50,520 KB |
| 実行使用メモリ | 6,144 KB |
| 最終ジャッジ日時 | 2026-03-26 18:31:53 |
| 合計ジャッジ時間 | 1,290 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 18 |
ソースコード
/* -*- coding: utf-8 -*-
*
* 2014.cc: No.2014 Eggs Hatching - yukicoder
*/
#include<cstdio>
#include<algorithm>
using namespace std;
/* constant */
const int N = 3;
/* typedef */
/* global variables */
int as[N];
/* subroutines */
/* main */
int main() {
for (int i = 0; i < N; i++) scanf("%d", as + i);
printf("%d\n", *min_element(as, as + N));
return 0;
}
tnakao0123