結果
| 問題 | No.851 テストケース |
| コンテスト | |
| ユーザー |
convexineq
|
| 提出日時 | 2021-03-26 04:49:02 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 25 ms / 3,153 ms |
| コード長 | 182 bytes |
| 記録 | |
| コンパイル時間 | 268 ms |
| コンパイル使用メモリ | 84,944 KB |
| 実行使用メモリ | 51,968 KB |
| 最終ジャッジ日時 | 2026-05-21 20:34:25 |
| 合計ジャッジ時間 | 2,077 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 20 |
ソースコード
n = int(input())
*a, = map(int,input().split())
if len(a) > 1:
print('"assert"')
exit()
a = a[0]
b = int(input())
c = int(input())
s = sorted(set([a+b,b+c,c+a]))
print(s[-2])
convexineq