結果

問題 No.2835 Take and Flip
ユーザー chineristACchineristAC
提出日時 2024-08-09 22:45:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 103 ms / 2,000 ms
コード長 288 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 103,880 KB
最終ジャッジ日時 2024-08-09 22:45:14
合計ジャッジ時間 3,078 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
55,424 KB
testcase_01 AC 44 ms
55,808 KB
testcase_02 AC 42 ms
55,680 KB
testcase_03 AC 95 ms
103,020 KB
testcase_04 AC 94 ms
103,880 KB
testcase_05 AC 43 ms
55,808 KB
testcase_06 AC 93 ms
96,860 KB
testcase_07 AC 95 ms
102,240 KB
testcase_08 AC 90 ms
97,260 KB
testcase_09 AC 95 ms
101,948 KB
testcase_10 AC 100 ms
101,952 KB
testcase_11 AC 96 ms
102,152 KB
testcase_12 AC 103 ms
101,948 KB
testcase_13 AC 95 ms
102,044 KB
testcase_14 AC 60 ms
81,152 KB
testcase_15 AC 43 ms
55,680 KB
testcase_16 AC 73 ms
93,184 KB
testcase_17 AC 47 ms
64,896 KB
testcase_18 AC 96 ms
97,280 KB
testcase_19 AC 97 ms
102,376 KB
testcase_20 AC 60 ms
79,104 KB
testcase_21 AC 92 ms
97,280 KB
testcase_22 AC 75 ms
95,616 KB
testcase_23 AC 56 ms
76,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from itertools import permutations
from heapq import heappop,heappush
from collections import deque
import random
import bisect

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

N = int(input())
A = li()
print(sum(A))
0