結果

問題 No.91 赤、緑、青の石
ユーザー tanimani364tanimani364
提出日時 2021-03-29 16:31:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 63 ms / 5,000 ms
コード長 608 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 67,600 KB
最終ジャッジ日時 2024-06-24 07:31:53
合計ジャッジ時間 3,141 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
66,524 KB
testcase_01 AC 59 ms
66,712 KB
testcase_02 AC 58 ms
66,244 KB
testcase_03 AC 60 ms
66,340 KB
testcase_04 AC 59 ms
67,504 KB
testcase_05 AC 63 ms
66,404 KB
testcase_06 AC 62 ms
66,288 KB
testcase_07 AC 60 ms
66,752 KB
testcase_08 AC 60 ms
67,308 KB
testcase_09 AC 59 ms
66,160 KB
testcase_10 AC 60 ms
66,144 KB
testcase_11 AC 59 ms
66,712 KB
testcase_12 AC 60 ms
67,584 KB
testcase_13 AC 60 ms
67,148 KB
testcase_14 AC 60 ms
67,600 KB
testcase_15 AC 58 ms
66,508 KB
testcase_16 AC 58 ms
66,168 KB
testcase_17 AC 60 ms
66,948 KB
testcase_18 AC 58 ms
66,396 KB
testcase_19 AC 58 ms
66,556 KB
testcase_20 AC 58 ms
66,244 KB
testcase_21 AC 62 ms
67,180 KB
testcase_22 AC 60 ms
66,292 KB
testcase_23 AC 60 ms
67,320 KB
testcase_24 AC 59 ms
66,860 KB
testcase_25 AC 60 ms
65,920 KB
testcase_26 AC 60 ms
67,532 KB
testcase_27 AC 59 ms
66,680 KB
testcase_28 AC 59 ms
65,856 KB
testcase_29 AC 60 ms
66,088 KB
testcase_30 AC 60 ms
67,516 KB
testcase_31 AC 59 ms
66,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
#coding:utf-8

import math
import string
import random
import heapq
from sys import stdin
# import numpy as np
# from matplotlib import pyplot as plt
	

def main():
	read=stdin.readline

	#edit here!
	a=list(map(int,read().split()))
	a.sort()
	maxv=10000001
	l=0
	r=maxv
	while r-l>1:
		mid=(l+r)//2
		if a[-1]<mid:
			r=mid;
		elif a[-1]>=mid and a[1]<mid:
			num=(a[-1]-mid)//2
			if num >=mid-a[1]+mid-a[0]:
				l=mid
			else :
				r=mid
		else:
			num=(a[-1]-mid)//2+(a[1]-mid)//2
			if num>=mid-a[0]:
				l=mid;
			else:
				r=mid
	print(l)




if __name__ == '__main__':
	main()
0