結果
問題 | No.851 テストケース |
ユーザー | kurarrr |
提出日時 | 2019-07-26 21:40:29 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 33 ms / 3,153 ms |
コード長 | 217 bytes |
コンパイル時間 | 77 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-07-02 06:46:33 |
合計ジャッジ時間 | 1,524 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 20 |
ソースコード
s = int(input()) a = list(map(int,input().split())) if len(a) > 1: print("\"assert\"") else: a = a[0] b = int(input()) c = int(input()) x = [a+b,b+c,c+a] x = list(set(x)) x.sort() print(x[len(x)-2])