結果

問題 No.91 赤、緑、青の石
ユーザー ytftytft
提出日時 2022-11-10 09:04:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 200 bytes
コンパイル時間 527 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 75,604 KB
最終ジャッジ日時 2024-07-23 12:07:43
合計ジャッジ時間 5,423 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 202 ms
75,248 KB
testcase_01 AC 154 ms
75,564 KB
testcase_02 AC 133 ms
75,560 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 101 ms
75,544 KB
testcase_07 AC 36 ms
53,960 KB
testcase_08 AC 37 ms
52,192 KB
testcase_09 WA -
testcase_10 AC 37 ms
52,188 KB
testcase_11 AC 110 ms
75,020 KB
testcase_12 AC 195 ms
75,604 KB
testcase_13 AC 158 ms
75,072 KB
testcase_14 AC 162 ms
75,016 KB
testcase_15 AC 186 ms
75,292 KB
testcase_16 AC 39 ms
53,708 KB
testcase_17 AC 36 ms
52,256 KB
testcase_18 AC 38 ms
53,204 KB
testcase_19 AC 36 ms
53,268 KB
testcase_20 AC 35 ms
53,292 KB
testcase_21 AC 35 ms
52,676 KB
testcase_22 AC 36 ms
53,484 KB
testcase_23 AC 36 ms
53,808 KB
testcase_24 AC 36 ms
52,444 KB
testcase_25 AC 232 ms
75,368 KB
testcase_26 WA -
testcase_27 AC 37 ms
52,476 KB
testcase_28 AC 74 ms
75,180 KB
testcase_29 AC 101 ms
75,136 KB
testcase_30 AC 296 ms
75,084 KB
testcase_31 AC 230 ms
75,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,math
input=lambda:sys.stdin.readline().rstrip()
A=list(map(int,input().split()))
for i in range(max(A),-1,-1):
	cur=0
	for j in A:
		cur+=(j-i)*(1+(j<i))
	if cur>=0:
		print(i)
		sys.exit()
0