結果

問題 No.2835 Take and Flip
ユーザー るこーそーるこーそー
提出日時 2024-09-25 13:18:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 101 ms / 2,000 ms
コード長 62 bytes
コンパイル時間 621 ms
コンパイル使用メモリ 82,072 KB
実行使用メモリ 107,476 KB
最終ジャッジ日時 2024-09-25 13:19:03
合計ジャッジ時間 3,203 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,180 KB
testcase_01 AC 37 ms
52,436 KB
testcase_02 AC 37 ms
52,988 KB
testcase_03 AC 101 ms
102,332 KB
testcase_04 AC 98 ms
100,560 KB
testcase_05 AC 38 ms
52,612 KB
testcase_06 AC 85 ms
102,524 KB
testcase_07 AC 87 ms
106,024 KB
testcase_08 AC 83 ms
101,860 KB
testcase_09 AC 98 ms
102,204 KB
testcase_10 AC 99 ms
102,076 KB
testcase_11 AC 99 ms
102,092 KB
testcase_12 AC 99 ms
102,136 KB
testcase_13 AC 99 ms
102,064 KB
testcase_14 AC 59 ms
76,984 KB
testcase_15 AC 38 ms
52,328 KB
testcase_16 AC 71 ms
89,116 KB
testcase_17 AC 43 ms
61,780 KB
testcase_18 AC 78 ms
96,740 KB
testcase_19 AC 90 ms
107,476 KB
testcase_20 AC 56 ms
76,040 KB
testcase_21 AC 84 ms
102,552 KB
testcase_22 AC 73 ms
92,992 KB
testcase_23 AC 55 ms
73,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
A=list(map(int,input().split()))

print(sum(A))
0