結果
問題 | No.851 テストケース |
ユーザー |
![]() |
提出日時 | 2019-08-05 20:48:42 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 149 bytes |
コンパイル時間 | 173 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-07-18 13:43:17 |
合計ジャッジ時間 | 1,597 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 2 RE * 1 |
other | WA * 18 RE * 2 |
ソースコード
n=int(input()) ls=[input() for i in range(n)] if len(ls)!=n: print("assert") else: l=list(map(int,ls)) l.sort() print(l[n-1]+l[n-2])