結果
| 問題 |
No.8100 始業式
|
| コンテスト | |
| ユーザー |
prin_kemkem
|
| 提出日時 | 2023-04-01 02:33:44 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 551 bytes |
| コンパイル時間 | 182 ms |
| コンパイル使用メモリ | 82,032 KB |
| 実行使用メモリ | 77,724 KB |
| 最終ジャッジ日時 | 2024-09-23 04:14:23 |
| 合計ジャッジ時間 | 755 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 1 |
ソースコード
from collections import defaultdict, deque, Counter
import copy
from itertools import combinations, permutations, product, accumulate
from heapq import heapify, heappop, heappush
import math
import bisect
import sys
# sys.setrecursionlimit(700000)
input = lambda: sys.stdin.readline().rstrip('\n')
inf = float('inf')
mod1 = 10**9+7
mod2 = 998244353
def ceil_div(x, y): return -(-x//y)
#################################################
T = int(input())
for _ in range(T):
N = int(input())
F = list(map(int, input().split()))
print(sum(F))
prin_kemkem