結果

問題 No.2835 Take and Flip
ユーザー rlangevinrlangevin
提出日時 2024-09-27 08:50:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 66 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 107,644 KB
最終ジャッジ日時 2024-09-27 08:50:39
合計ジャッジ時間 4,348 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,620 KB
testcase_01 AC 35 ms
52,160 KB
testcase_02 AC 39 ms
51,812 KB
testcase_03 AC 92 ms
102,316 KB
testcase_04 AC 93 ms
100,472 KB
testcase_05 AC 40 ms
52,268 KB
testcase_06 AC 81 ms
102,740 KB
testcase_07 AC 83 ms
106,004 KB
testcase_08 AC 82 ms
101,480 KB
testcase_09 AC 95 ms
101,980 KB
testcase_10 AC 122 ms
101,992 KB
testcase_11 AC 101 ms
102,416 KB
testcase_12 AC 101 ms
101,956 KB
testcase_13 AC 94 ms
102,132 KB
testcase_14 AC 57 ms
77,832 KB
testcase_15 AC 37 ms
51,940 KB
testcase_16 AC 69 ms
90,824 KB
testcase_17 AC 42 ms
62,476 KB
testcase_18 AC 76 ms
97,472 KB
testcase_19 AC 88 ms
107,644 KB
testcase_20 AC 59 ms
75,596 KB
testcase_21 AC 86 ms
102,136 KB
testcase_22 AC 74 ms
93,564 KB
testcase_23 AC 70 ms
73,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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