結果

問題 No.3100 始業式
ユーザー titiatitia
提出日時 2023-03-31 21:27:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 152 bytes
コンパイル時間 85 ms
コンパイル使用メモリ 11,648 KB
実行使用メモリ 10,036 KB
最終ジャッジ日時 2023-10-24 07:14:27
合計ジャッジ時間 631 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

T=int(input())
for tests in range(T):
    N=int(input())
    A=list(map(int,input().split()))

    print(sum(A))
0