結果

問題 No.851 テストケース
ユーザー dn6049949dn6049949
提出日時 2019-07-26 21:22:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,128 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 57,528 KB
最終ジャッジ日時 2024-07-02 06:33:35
合計ジャッジ時間 2,049 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
57,352 KB
testcase_01 AC 45 ms
56,236 KB
testcase_02 WA -
testcase_03 AC 45 ms
56,236 KB
testcase_04 AC 46 ms
56,856 KB
testcase_05 AC 45 ms
57,528 KB
testcase_06 AC 45 ms
56,772 KB
testcase_07 AC 45 ms
56,068 KB
testcase_08 AC 45 ms
56,856 KB
testcase_09 AC 46 ms
57,468 KB
testcase_10 AC 45 ms
57,256 KB
testcase_11 AC 45 ms
56,620 KB
testcase_12 AC 44 ms
56,992 KB
testcase_13 AC 45 ms
57,336 KB
testcase_14 AC 46 ms
56,336 KB
testcase_15 AC 45 ms
56,992 KB
testcase_16 AC 45 ms
57,000 KB
testcase_17 AC 46 ms
57,256 KB
testcase_18 AC 45 ms
56,448 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 45 ms
56,604 KB
testcase_22 AC 46 ms
56,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!usr/bin/env python3
from collections import defaultdict,deque
from heapq import heappush, heappop
import sys
import math
import bisect
import random
def LI(): return [int(x) for x in sys.stdin.readline().split()]
def I(): return int(sys.stdin.readline())
def LS():return [list(x) for x in sys.stdin.readline().split()]
def S(): return list(sys.stdin.readline())[:-1]
def IR(n):
    return [I() for i in range(n)]
def LIR(n):
    return [LI() for i in range(n)]
def SR(n):
    return [S() for i in range(n)]
def LSR(n):
    return [LS() for i in range(n)]

sys.setrecursionlimit(1000000)
mod = 1000000007

#A
def A():
    try:
        n = I()
        a = IR(n)
        l = []
        for i in range(n):
            for j in range(i):
                l.append(a[i]+a[j])
        l = list(set(l))
        l.sort()
        l = l[::-1]
        print(l[1])
    except:
        print("assert")
    return

#B
def B():
    n = I()

    return

#C
def C():
    n = I()

    return

#D
def D():
    n = I()

    return

#E
def E():
    n = I()

    return

#F
def F():
    n = I()

    return

#Solve
if __name__ == "__main__":
    A()
0