結果

問題 No.3165 [Cherry 7th Tune A] Croissants Continu
ユーザー 👑 Kazun
提出日時 2023-10-22 22:52:25
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 278 bytes
コンパイル時間 513 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 122,552 KB
最終ジャッジ日時 2025-05-30 21:02:45
合計ジャッジ時間 4,721 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 1
other AC * 9 WA * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    N = int(input())
    A = list(map(int, input().split()))
    return sum(A)

#==================================================
import sys
input=sys.stdin.readline
write=sys.stdout.write

T = int(input())
write("\n".join(map(str, [solve() for _ in range(T)])))
0