結果

問題 No.2014 Eggs Hatching
ユーザー VvyLw
提出日時 2025-04-04 09:55:41
言語 D
(dmd 2.109.1)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 150 bytes
コンパイル時間 1,223 ms
コンパイル使用メモリ 162,516 KB
実行使用メモリ 7,328 KB
最終ジャッジ日時 2025-04-04 09:55:43
合計ジャッジ時間 2,153 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 18
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;
import core.bitop;
import core.checkedint;
import core.time;

void main() {
	const a = readln.split.to!(int[]);
	writeln(minElement(a));
}
0