結果

問題 No.851 テストケース
ユーザー Nagisa
提出日時 2019-07-26 21:29:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 46 ms / 3,153 ms
コード長 264 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 52,352 KB
最終ジャッジ日時 2024-07-02 06:38:34
合計ジャッジ時間 1,802 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
l = list(map(int,input().split()))
if len(l) == 3:
    print("\"assert\"")
else:
    a = l[0]
    b = int(input())
    c = int(input())
    L = sorted(list(set([a+b,b+c,c+a])))
    if len(L) == 3:
        print(L[1])
    else:
        print(L[0])
0