結果

問題 No.851 テストケース
コンテスト
ユーザー yomo3
提出日時 2020-02-13 22:25:48
言語 Python3
(3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL)
コンパイル:
python3 -mpy_compile _filename_
実行:
python3 _filename_
結果
AC  
実行時間 21 ms / 3,153 ms
+ 565µs
コード長 224 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 58 ms
コンパイル使用メモリ 14,976 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2026-09-11 00:04:31
合計ジャッジ時間 2,138 ms
ジャッジサーバーID
(参考情報)
judge3_1 / judge1_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

N = int(input())
_A = list(input().split())
if len(_A) != 1:
    print('"assert"')
else:
    A = sorted([int(_A[0])] + [int(input()) for _ in range(N-1)], reverse=True)
    print(A[0] + A[2] if A[1] != A[2] else A[1] + A[2])
0