結果

問題 No.2014 Eggs Hatching
ユーザー siganaisiganai
提出日時 2022-07-22 21:20:33
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 312 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 86,972 KB
実行使用メモリ 79,036 KB
最終ジャッジ日時 2023-09-18 22:04:48
合計ジャッジ時間 4,263 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 147 ms
78,876 KB
testcase_01 AC 145 ms
78,760 KB
testcase_02 AC 149 ms
78,808 KB
testcase_03 AC 150 ms
78,920 KB
testcase_04 AC 150 ms
78,848 KB
testcase_05 AC 148 ms
78,896 KB
testcase_06 AC 149 ms
78,800 KB
testcase_07 AC 149 ms
78,928 KB
testcase_08 AC 148 ms
78,936 KB
testcase_09 AC 146 ms
78,944 KB
testcase_10 AC 147 ms
78,920 KB
testcase_11 AC 146 ms
78,916 KB
testcase_12 AC 147 ms
78,988 KB
testcase_13 AC 152 ms
79,036 KB
testcase_14 AC 145 ms
78,900 KB
testcase_15 AC 146 ms
78,904 KB
testcase_16 AC 147 ms
78,984 KB
testcase_17 AC 149 ms
78,980 KB
testcase_18 AC 146 ms
78,764 KB
testcase_19 AC 146 ms
78,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env PyPy3

from collections import Counter, defaultdict, deque
import itertools
import re
import math
from functools import reduce
import operator
import bisect
from heapq import *
import functools
mod=998244353

import sys
input=sys.stdin.readline


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