結果

問題 No.8101 砂嵐
ユーザー Alex Wice
提出日時 2023-03-31 21:44:41
言語 PyPy2
(7.3.15)
結果
RE  
実行時間 -
コード長 66 bytes
コンパイル時間 109 ms
コンパイル使用メモリ 76,452 KB
実行使用メモリ 75,940 KB
最終ジャッジ日時 2024-09-23 00:21:47
合計ジャッジ時間 6,426 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 3
other RE * 62
権限があれば一括ダウンロードができます

ソースコード

diff #

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