結果

問題 No.2835 Take and Flip
ユーザー PNJPNJ
提出日時 2024-08-09 21:21:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 65 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 107,636 KB
最終ジャッジ日時 2024-08-09 21:22:03
合計ジャッジ時間 2,879 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,628 KB
testcase_01 AC 35 ms
52,072 KB
testcase_02 AC 47 ms
52,616 KB
testcase_03 AC 96 ms
102,732 KB
testcase_04 AC 89 ms
100,608 KB
testcase_05 AC 36 ms
52,068 KB
testcase_06 AC 76 ms
102,168 KB
testcase_07 AC 78 ms
106,168 KB
testcase_08 AC 75 ms
102,268 KB
testcase_09 AC 90 ms
102,128 KB
testcase_10 AC 91 ms
102,144 KB
testcase_11 AC 94 ms
102,052 KB
testcase_12 AC 90 ms
102,120 KB
testcase_13 AC 90 ms
102,392 KB
testcase_14 AC 57 ms
76,992 KB
testcase_15 AC 33 ms
52,596 KB
testcase_16 AC 65 ms
89,868 KB
testcase_17 AC 39 ms
62,280 KB
testcase_18 AC 69 ms
97,040 KB
testcase_19 AC 83 ms
107,636 KB
testcase_20 AC 51 ms
76,180 KB
testcase_21 AC 77 ms
102,460 KB
testcase_22 AC 65 ms
92,468 KB
testcase_23 AC 51 ms
73,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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