結果

問題 No.2835 Take and Flip
ユーザー pluto77pluto77
提出日時 2024-08-21 10:15:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 92 ms / 2,000 ms
コード長 62 bytes
コンパイル時間 356 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 107,372 KB
最終ジャッジ日時 2024-08-21 10:15:25
合計ジャッジ時間 3,277 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,228 KB
testcase_01 AC 35 ms
51,660 KB
testcase_02 AC 34 ms
52,068 KB
testcase_03 AC 88 ms
102,412 KB
testcase_04 AC 87 ms
100,488 KB
testcase_05 AC 37 ms
51,980 KB
testcase_06 AC 85 ms
102,292 KB
testcase_07 AC 77 ms
105,944 KB
testcase_08 AC 75 ms
101,108 KB
testcase_09 AC 88 ms
101,932 KB
testcase_10 AC 92 ms
102,296 KB
testcase_11 AC 87 ms
102,072 KB
testcase_12 AC 86 ms
101,920 KB
testcase_13 AC 86 ms
102,052 KB
testcase_14 AC 56 ms
78,292 KB
testcase_15 AC 33 ms
52,540 KB
testcase_16 AC 64 ms
90,224 KB
testcase_17 AC 39 ms
62,892 KB
testcase_18 AC 71 ms
98,360 KB
testcase_19 AC 83 ms
107,372 KB
testcase_20 AC 51 ms
75,248 KB
testcase_21 AC 77 ms
102,072 KB
testcase_22 AC 66 ms
92,804 KB
testcase_23 AC 49 ms
73,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
print(sum(a))
0