結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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)+1)
0