結果
| 問題 |
No.1525 Meximum Sum
|
| ユーザー |
|
| 提出日時 | 2021-05-30 10:12:31 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 367 bytes |
| コンパイル時間 | 254 ms |
| コンパイル使用メモリ | 82,304 KB |
| 実行使用メモリ | 107,648 KB |
| 最終ジャッジ日時 | 2024-11-08 20:45:54 |
| 合計ジャッジ時間 | 3,582 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 23 |
ソースコード
import sys,random,bisect
from collections import deque,defaultdict
from heapq import heapify,heappop,heappush
from itertools import permutations
from math import gcd,log
input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())
mod = 998888353
N = int(input())
A = li()
for i in range(N):
assert 0<=A[i]<=N-1