結果
問題 | No.1336 Union on Blackboard |
ユーザー |
![]() |
提出日時 | 2021-01-18 10:22:10 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 130 bytes |
コンパイル時間 | 241 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-11-30 21:40:41 |
合計ジャッジ時間 | 2,079 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | WA * 31 |
ソースコード
T=int(input()) for i in range(T): N=int(input()) A=list(map(int, input().split())) d=1 for i in A: d*=i+1 print(d-1)