結果

問題 No.2835 Take and Flip
ユーザー ShirotsumeShirotsume
提出日時 2024-08-09 21:23:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 382 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 113,108 KB
最終ジャッジ日時 2024-08-09 21:24:13
合計ジャッジ時間 4,057 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
71,680 KB
testcase_01 AC 75 ms
71,808 KB
testcase_02 AC 75 ms
71,936 KB
testcase_03 AC 129 ms
112,696 KB
testcase_04 AC 128 ms
113,108 KB
testcase_05 AC 73 ms
71,936 KB
testcase_06 AC 126 ms
108,416 KB
testcase_07 AC 127 ms
111,548 KB
testcase_08 AC 124 ms
107,848 KB
testcase_09 AC 129 ms
112,288 KB
testcase_10 AC 129 ms
112,256 KB
testcase_11 AC 129 ms
112,200 KB
testcase_12 AC 130 ms
112,104 KB
testcase_13 AC 132 ms
112,272 KB
testcase_14 AC 101 ms
89,280 KB
testcase_15 AC 73 ms
71,680 KB
testcase_16 AC 112 ms
99,072 KB
testcase_17 AC 86 ms
79,872 KB
testcase_18 AC 118 ms
104,896 KB
testcase_19 AC 129 ms
111,928 KB
testcase_20 AC 99 ms
88,336 KB
testcase_21 AC 126 ms
108,544 KB
testcase_22 AC 115 ms
101,316 KB
testcase_23 AC 96 ms
87,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, time, random
from collections import deque, Counter, defaultdict
import logging
from logging import debug, error, info, warning
logging.basicConfig(level=logging.DEBUG)
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 61 - 1
mod = 998244353

n = ii()
a = li()
print(sum(a))
0