結果

問題 No.851 テストケース
ユーザー mlihua09
提出日時 2020-09-03 13:47:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 3,153 ms
コード長 194 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 52,224 KB
最終ジャッジ日時 2024-11-23 16:19:01
合計ジャッジ時間 1,948 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

_ = int(input())

try:
    A = [int(input()) for i in range(3)]
    A.sort()
    if A[0] != A[1]:
        print(A[0] + A[2])
    else:
        print(A[0] + A[1])
except:
    print('\"assert\"')
0