結果

問題 No.2835 Take and Flip
ユーザー prin_kemkemprin_kemkem
提出日時 2024-08-09 22:03:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 167 ms / 2,000 ms
コード長 606 bytes
コンパイル時間 348 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 114,560 KB
最終ジャッジ日時 2024-08-09 22:03:47
合計ジャッジ時間 4,681 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
80,384 KB
testcase_01 AC 96 ms
80,512 KB
testcase_02 AC 96 ms
80,512 KB
testcase_03 AC 167 ms
113,920 KB
testcase_04 AC 137 ms
114,560 KB
testcase_05 AC 96 ms
80,512 KB
testcase_06 AC 135 ms
110,080 KB
testcase_07 AC 144 ms
113,152 KB
testcase_08 AC 148 ms
109,568 KB
testcase_09 AC 140 ms
113,792 KB
testcase_10 AC 140 ms
113,792 KB
testcase_11 AC 162 ms
113,664 KB
testcase_12 AC 137 ms
113,792 KB
testcase_13 AC 137 ms
113,792 KB
testcase_14 AC 112 ms
92,160 KB
testcase_15 AC 98 ms
80,384 KB
testcase_16 AC 123 ms
100,480 KB
testcase_17 AC 98 ms
80,640 KB
testcase_18 AC 127 ms
105,856 KB
testcase_19 AC 137 ms
113,024 KB
testcase_20 AC 129 ms
90,624 KB
testcase_21 AC 136 ms
109,952 KB
testcase_22 AC 150 ms
102,784 KB
testcase_23 AC 111 ms
88,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict, deque, Counter
from functools import cache
# import copy
from itertools import combinations, permutations, product, accumulate, groupby, chain
from heapq import heapify, heappop, heappush
import math
import bisect
from pprint import pprint
from random import randint
import sys
# sys.setrecursionlimit(200000)
input = lambda: sys.stdin.readline().rstrip('\n')
inf = float('inf')
mod1 = 10**9+7
mod2 = 998244353
def ceil_div(x, y): return -(-x//y)

#################################################    

N = int(input())
A = list(map(int, input().split()))
print(sum(A))
0