結果

問題 No.2014 Eggs Hatching
ユーザー haddock2022haddock2022
提出日時 2022-07-24 10:07:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 35 ms / 2,000 ms
コード長 48 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 53,444 KB
最終ジャッジ日時 2024-07-06 03:59:18
合計ジャッジ時間 1,859 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,072 KB
testcase_01 AC 31 ms
51,872 KB
testcase_02 AC 32 ms
53,020 KB
testcase_03 AC 32 ms
53,444 KB
testcase_04 AC 32 ms
52,360 KB
testcase_05 AC 32 ms
53,324 KB
testcase_06 AC 31 ms
51,556 KB
testcase_07 AC 33 ms
52,340 KB
testcase_08 AC 32 ms
52,436 KB
testcase_09 AC 33 ms
52,396 KB
testcase_10 AC 32 ms
51,948 KB
testcase_11 AC 31 ms
53,288 KB
testcase_12 AC 33 ms
52,604 KB
testcase_13 AC 33 ms
52,708 KB
testcase_14 AC 34 ms
52,660 KB
testcase_15 AC 35 ms
52,840 KB
testcase_16 AC 34 ms
51,848 KB
testcase_17 AC 33 ms
52,344 KB
testcase_18 AC 33 ms
51,748 KB
testcase_19 AC 33 ms
51,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a = list(map(int,input().split()))
print(min(a))
0