結果
| 問題 |
No.1470 Mex Sum
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-04-12 01:04:41 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
MLE
|
| 実行時間 | - |
| コード長 | 183 bytes |
| コンパイル時間 | 153 ms |
| コンパイル使用メモリ | 82,032 KB |
| 実行使用メモリ | 848,592 KB |
| 最終ジャッジ日時 | 2024-06-27 22:42:41 |
| 合計ジャッジ時間 | 3,541 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | MLE * 1 -- * 48 |
ソースコード
import itertools n=int(input()) number=list(map(int,input().split())) goukei=0 combination=list(itertools.combinations(number,2)) for i,j in combination: goukei+=(i+j) print(goukei)