結果

問題 No.2835 Take and Flip
ユーザー Iroha_3856Iroha_3856
提出日時 2024-08-10 15:07:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 91 ms / 2,000 ms
コード長 66 bytes
コンパイル時間 565 ms
コンパイル使用メモリ 82,484 KB
実行使用メモリ 107,484 KB
最終ジャッジ日時 2024-08-10 15:07:52
合計ジャッジ時間 3,575 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
52,672 KB
testcase_01 AC 33 ms
51,944 KB
testcase_02 AC 33 ms
52,184 KB
testcase_03 AC 88 ms
102,744 KB
testcase_04 AC 84 ms
100,608 KB
testcase_05 AC 32 ms
52,204 KB
testcase_06 AC 73 ms
102,516 KB
testcase_07 AC 79 ms
106,116 KB
testcase_08 AC 71 ms
102,168 KB
testcase_09 AC 91 ms
102,180 KB
testcase_10 AC 90 ms
102,176 KB
testcase_11 AC 88 ms
102,452 KB
testcase_12 AC 87 ms
102,168 KB
testcase_13 AC 86 ms
102,004 KB
testcase_14 AC 54 ms
77,808 KB
testcase_15 AC 31 ms
52,788 KB
testcase_16 AC 61 ms
89,664 KB
testcase_17 AC 39 ms
62,280 KB
testcase_18 AC 69 ms
97,964 KB
testcase_19 AC 83 ms
107,484 KB
testcase_20 AC 52 ms
75,444 KB
testcase_21 AC 74 ms
102,140 KB
testcase_22 AC 62 ms
91,716 KB
testcase_23 AC 48 ms
73,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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