結果

問題 No.851 テストケース
ユーザー neterukunneterukun
提出日時 2019-07-31 21:52:51
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 278 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 52,224 KB
最終ジャッジ日時 2024-07-05 07:18:54
合計ジャッジ時間 1,628 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,328 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 33 ms
51,456 KB
testcase_04 AC 33 ms
51,456 KB
testcase_05 AC 33 ms
51,456 KB
testcase_06 AC 33 ms
51,200 KB
testcase_07 AC 33 ms
51,712 KB
testcase_08 AC 33 ms
51,200 KB
testcase_09 AC 33 ms
51,456 KB
testcase_10 AC 32 ms
51,712 KB
testcase_11 AC 33 ms
51,712 KB
testcase_12 AC 33 ms
51,200 KB
testcase_13 AC 33 ms
51,200 KB
testcase_14 AC 32 ms
51,840 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 32 ms
51,712 KB
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

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(ans_set)
print(li[1])
0