結果

問題 No.851 テストケース
コンテスト
ユーザー Nagisa
提出日時 2019-07-26 21:29:59
言語 PyPy3
(7.3.17)
コンパイル:
pypy3 -mpy_compile _filename_
実行:
pypy3 _filename_
結果
AC  
実行時間 24 ms / 3,153 ms
コード長 264 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 490 ms
コンパイル使用メモリ 85,176 KB
実行使用メモリ 54,048 KB
最終ジャッジ日時 2026-03-23 11:00:57
合計ジャッジ時間 1,686 ms
ジャッジサーバーID
(参考情報)
judge3_0 / judge1_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

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