結果

問題 No.91 赤、緑、青の石
ユーザー ytftytft
提出日時 2022-11-10 09:06:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 658 ms / 5,000 ms
コード長 207 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,040 KB
実行使用メモリ 76,036 KB
最終ジャッジ日時 2024-07-23 12:10:09
合計ジャッジ時間 8,851 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 501 ms
75,300 KB
testcase_01 AC 345 ms
75,716 KB
testcase_02 AC 294 ms
75,488 KB
testcase_03 AC 366 ms
75,476 KB
testcase_04 AC 214 ms
75,596 KB
testcase_05 AC 461 ms
75,848 KB
testcase_06 AC 191 ms
75,468 KB
testcase_07 AC 38 ms
53,820 KB
testcase_08 AC 37 ms
53,552 KB
testcase_09 AC 37 ms
52,568 KB
testcase_10 AC 37 ms
53,012 KB
testcase_11 AC 219 ms
75,548 KB
testcase_12 AC 414 ms
75,496 KB
testcase_13 AC 354 ms
75,604 KB
testcase_14 AC 348 ms
75,580 KB
testcase_15 AC 443 ms
76,036 KB
testcase_16 AC 37 ms
52,312 KB
testcase_17 AC 36 ms
52,376 KB
testcase_18 AC 37 ms
53,864 KB
testcase_19 AC 37 ms
52,524 KB
testcase_20 AC 37 ms
53,532 KB
testcase_21 AC 37 ms
52,776 KB
testcase_22 AC 39 ms
52,572 KB
testcase_23 AC 37 ms
52,736 KB
testcase_24 AC 37 ms
53,252 KB
testcase_25 AC 488 ms
75,436 KB
testcase_26 AC 563 ms
75,544 KB
testcase_27 AC 37 ms
52,664 KB
testcase_28 AC 125 ms
75,392 KB
testcase_29 AC 208 ms
75,480 KB
testcase_30 AC 658 ms
75,468 KB
testcase_31 AC 549 ms
75,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,math
input=lambda:sys.stdin.readline().rstrip()
def check(i,A):
	cur=0
	for j in A:
		cur+=(j-i)//(1+(j>i))
	return cur<0
A=list(map(int,input().split()))
i=max(A)
while check(i,A):
	i-=1
print(i)
0