結果

問題 No.2835 Take and Flip
ユーザー ra5anchorra5anchor
提出日時 2024-08-09 21:27:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 67 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 107,552 KB
最終ジャッジ日時 2024-08-09 21:27:41
合計ジャッジ時間 2,918 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,208 KB
testcase_01 AC 35 ms
53,712 KB
testcase_02 AC 33 ms
51,868 KB
testcase_03 AC 93 ms
102,656 KB
testcase_04 AC 91 ms
100,848 KB
testcase_05 AC 33 ms
52,964 KB
testcase_06 AC 77 ms
102,764 KB
testcase_07 AC 80 ms
106,008 KB
testcase_08 AC 77 ms
100,944 KB
testcase_09 AC 91 ms
102,060 KB
testcase_10 AC 92 ms
102,316 KB
testcase_11 AC 95 ms
102,396 KB
testcase_12 AC 94 ms
102,228 KB
testcase_13 AC 89 ms
102,124 KB
testcase_14 AC 55 ms
78,356 KB
testcase_15 AC 35 ms
51,872 KB
testcase_16 AC 67 ms
90,188 KB
testcase_17 AC 42 ms
62,592 KB
testcase_18 AC 73 ms
98,188 KB
testcase_19 AC 85 ms
107,552 KB
testcase_20 AC 52 ms
76,064 KB
testcase_21 AC 77 ms
102,504 KB
testcase_22 AC 70 ms
92,252 KB
testcase_23 AC 50 ms
74,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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