結果

問題 No.851 テストケース
ユーザー neterukunneterukun
提出日時 2019-07-31 21:54:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 3,153 ms
コード長 291 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 82,512 KB
実行使用メモリ 53,772 KB
最終ジャッジ日時 2024-07-05 07:18:58
合計ジャッジ時間 1,824 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,364 KB
testcase_01 AC 41 ms
52,148 KB
testcase_02 AC 37 ms
52,640 KB
testcase_03 AC 37 ms
53,500 KB
testcase_04 AC 38 ms
52,444 KB
testcase_05 AC 37 ms
53,656 KB
testcase_06 AC 38 ms
52,424 KB
testcase_07 AC 37 ms
53,472 KB
testcase_08 AC 38 ms
53,088 KB
testcase_09 AC 38 ms
52,604 KB
testcase_10 AC 38 ms
52,868 KB
testcase_11 AC 39 ms
52,236 KB
testcase_12 AC 38 ms
52,504 KB
testcase_13 AC 37 ms
52,404 KB
testcase_14 AC 37 ms
52,308 KB
testcase_15 AC 37 ms
53,112 KB
testcase_16 AC 38 ms
53,216 KB
testcase_17 AC 38 ms
51,744 KB
testcase_18 AC 38 ms
53,008 KB
testcase_19 AC 37 ms
52,208 KB
testcase_20 AC 37 ms
53,772 KB
testcase_21 AC 37 ms
53,624 KB
testcase_22 AC 37 ms
53,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))

if len(a) == 3:
    print('"assert"')
    exit()
    
x = a[0]
y = int(input())
z = int(input())

ans_set = set([])
ans_set.add(x + y)
ans_set.add(y + z)
ans_set.add(z + x)
li = list(ans_set)
li = sorted(li, reverse = True)
print(li[1])
0