結果
| 問題 | No.2014 Eggs Hatching |
| コンテスト | |
| ユーザー |
toshiro_yanagi
|
| 提出日時 | 2022-08-06 09:18:55 |
| 言語 | Nim (2.2.10 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 1 ms / 2,000 ms |
| + 367µs | |
| コード長 | 313 bytes |
| 記録 | |
| コンパイル時間 | 4,490 ms |
| コンパイル使用メモリ | 67,684 KB |
| 実行使用メモリ | 6,272 KB |
| 最終ジャッジ日時 | 2026-08-28 12:49:52 |
| 合計ジャッジ時間 | 5,601 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 18 |
ソースコード
import strutils
proc pInt(s: auto): int = parseInt($s)
proc input(): string =
while not stdin.endOfFile:
let c = stdin.readChar
if c == '\r': continue
if c in [' ', '\n']: break
result.add c
proc main(): void =
let a, b, c = pInt(input())
echo [a, b, c].min
when isMainModule:
main()
toshiro_yanagi