結果

問題 No.851 テストケース
ユーザー hint908
提出日時 2025-04-30 18:51:24
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 163 bytes
コンパイル時間 483 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 66,640 KB
最終ジャッジ日時 2025-04-30 18:51:28
合計ジャッジ時間 2,151 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 1 RE * 1
other AC * 15 WA * 3 RE * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
v = list(map(int, input().split()))

if len(v) == 3:
	print("assert")

a = v[0]
b = int(input())
c = int(input())

print(max(a,b,c) + min(a,b,c))
0