結果

問題 No.2014 Eggs Hatching
ユーザー asumo0729asumo0729
提出日時 2022-07-22 21:20:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 756 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 86,808 KB
実行使用メモリ 73,076 KB
最終ジャッジ日時 2023-09-18 22:05:30
合計ジャッジ時間 3,515 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
72,856 KB
testcase_01 AC 109 ms
72,624 KB
testcase_02 AC 112 ms
73,016 KB
testcase_03 AC 113 ms
72,996 KB
testcase_04 AC 111 ms
72,672 KB
testcase_05 AC 110 ms
72,784 KB
testcase_06 AC 112 ms
72,776 KB
testcase_07 AC 112 ms
72,616 KB
testcase_08 AC 111 ms
72,856 KB
testcase_09 AC 111 ms
72,980 KB
testcase_10 AC 110 ms
73,076 KB
testcase_11 AC 111 ms
72,900 KB
testcase_12 AC 114 ms
72,724 KB
testcase_13 AC 111 ms
72,988 KB
testcase_14 AC 112 ms
72,460 KB
testcase_15 AC 110 ms
72,668 KB
testcase_16 AC 109 ms
72,896 KB
testcase_17 AC 110 ms
72,524 KB
testcase_18 AC 108 ms
72,460 KB
testcase_19 AC 110 ms
72,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from operator import itemgetter
from collections import defaultdict, deque
import heapq
from heapq import heapify, heappop, _heapify_max, heappush
from bisect import bisect_left, bisect_right
import math
import itertools
import copy

stdin=sys.stdin
#sys.setrecursionlimit(10 ** 7)
## import pypyjit
## pypyjit.set_param('max_unroll_recursion=-1')

ip=lambda: int(sp())
fp=lambda: float(sp())
lp=lambda:list(map(int,stdin.readline().split()))
sp=lambda:stdin.readline().rstrip()
Yp=lambda:print('Yes')
Np=lambda:print('No')
inf = 1 << 60
inf = float('inf')
mod = 10 ** 9 + 7
mod = 998244353
eps = 1e-9
sortkey1 = itemgetter(0)
sortkey2 = lambda x: (x[0], x[1])



###############################################################

print(min(lp()))
0